Changeset 73
- Timestamp:
- 01/12/06 05:19:27 (3 years ago)
- Location:
- trunk/src/gui
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gui/about.cpp
r62 r73 29 29 ui.setupUi(this); 30 30 31 /* FIXME Need access to global TorControl object to retrieve vesion */ 31 /* Get Vidalia's version number */ 32 ui.lblVidaliaVersion->setText(VidaliaSettings::getVersion()); 33 34 /* FIXME Need access to global TorControl object to retrieve version */ 32 35 /* 33 36 QString* errmsg; … … 40 43 */ 41 44 42 /* Get Qt's Version number */45 /* Get Qt's version number */ 43 46 ui.lblQtVersion->setText(QT_VERSION_STR); 44 47 } -
trunk/src/gui/about.h
r62 r73 26 26 27 27 #include "ui_aboutdialog.h" 28 #include "../config/vidaliasettings.h" 28 29 // #include "../control/torcontrol.h" 29 30 -
trunk/src/gui/mainwindow.cpp
r68 r73 36 36 /* Put an icon in the system tray to indicate the status of Tor */ 37 37 _trayIcon = new TrayIcon(QPixmap(":/images/tor_on32.png"), 38 tr(" Vidalia"), _trayMenu, this);38 tr("Tor is Started"), _trayMenu, this); 39 39 _trayIcon->show(); 40 40 } … … 95 95 /* Set correct tray icon */ 96 96 _trayIcon->setIcon(QPixmap(":/images/tor_on32.png")); 97 98 /* Set ToolTip */ 99 _trayIcon->setToolTip(QString("Tor is started")); 97 100 98 101 /* Set menu actions appropriately */ … … 112 115 _trayIcon->setIcon(QPixmap(":/images/tor_off32.png")); 113 116 117 /* Set ToolTip */ 118 _trayIcon->setToolTip(QString("Tor is stopped")); 119 114 120 /* Set menu actions appropriately */ 115 121 _stopAct->setEnabled(false);
