Changeset 66
- Timestamp:
- 01/12/06 02:46:19 (3 years ago)
- Files:
-
- 1 modified
-
trunk/src/gui/mainwindow.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gui/mainwindow.cpp
r63 r66 46 46 void MainWindow::createActions() 47 47 { 48 _startAct = new QAction(tr("Start Vidalia"), this);48 _startAct = new QAction(tr("Start"), this); 49 49 connect(_startAct, SIGNAL(triggered()), this, SLOT(start())); 50 50 _startAct->setEnabled(false); 51 51 52 _stopAct = new QAction(tr("Stop Vidalia"), this);52 _stopAct = new QAction(tr("Stop"), this); 53 53 connect(_stopAct, SIGNAL(triggered()), this, SLOT(stop())); 54 54 55 _configAct = new QAction(tr("Configure Vidalia"), this);55 _configAct = new QAction(tr("Configure"), this); 56 56 57 57 _aboutAct = new QAction(tr("About"), this);
