Changeset 66

Show
Ignore:
Timestamp:
01/12/06 02:46:19 (3 years ago)
Author:
hipplej
Message:

Made Start, Stop and Configure more generic.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/gui/mainwindow.cpp

    r63 r66  
    4646void MainWindow::createActions() 
    4747{ 
    48   _startAct = new QAction(tr("Start Vidalia"), this); 
     48  _startAct = new QAction(tr("Start"), this); 
    4949  connect(_startAct, SIGNAL(triggered()), this, SLOT(start())); 
    5050  _startAct->setEnabled(false); 
    5151   
    52   _stopAct = new QAction(tr("Stop Vidalia"), this); 
     52  _stopAct = new QAction(tr("Stop"), this); 
    5353  connect(_stopAct, SIGNAL(triggered()), this, SLOT(stop())); 
    5454 
    55   _configAct = new QAction(tr("Configure Vidalia"), this); 
     55  _configAct = new QAction(tr("Configure"), this); 
    5656   
    5757  _aboutAct = new QAction(tr("About"), this);