diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-12 17:49:37 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-12 17:49:37 -0500 |
commit | 84584fc050ae1cbd86feb5179ab7aa095e1ee23b (patch) | |
tree | 10cc92ed5873198799f86b313c01d7e3d570b77d | |
parent | ae89a2ab6b94f21a34bebf3507b1ad85fb7b0ab8 (diff) | |
download | wlassistant-84584fc050ae1cbd86feb5179ab7aa095e1ee23b.tar.gz wlassistant-84584fc050ae1cbd86feb5179ab7aa095e1ee23b.zip |
Bring stop, lock, exit, and run icons into XDG compliance
-rw-r--r-- | src/wlassistant.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wlassistant.cpp b/src/wlassistant.cpp index 36e2964..7913d67 100644 --- a/src/wlassistant.cpp +++ b/src/wlassistant.cpp @@ -955,7 +955,7 @@ TQString WirelessAssistant::runCommand( const TQStringList & cmd, int timeout, b if (i==27) { // ca 2sec have passed and the process is still running. Replace the 'Close' button with 'Stop'. disconnect(buttonClose, TQT_SIGNAL(clicked()), this, TQT_SLOT(close()) ); - buttonClose->setIconSet( SmallIconSet("stop") ); + buttonClose->setIconSet( SmallIconSet("process-stop") ); buttonClose->setText( i18n("&Stop") ); TQToolTip::remove (buttonClose); |