author | drw <drw> | 2003-03-08 21:40:12 (UTC) |
---|---|---|
committer | drw <drw> | 2003-03-08 21:40:12 (UTC) |
commit | 8a437f5e03f48bc4831e469bb045ca64435d01b5 (patch) (side-by-side diff) | |
tree | 3d36ad74010eb6225917fc370820e9c4f194025c | |
parent | abf7debafd01d4ff71bddee06bf5cb4d46e6519c (diff) | |
download | opie-8a437f5e03f48bc4831e469bb045ca64435d01b5.zip opie-8a437f5e03f48bc4831e469bb045ca64435d01b5.tar.gz opie-8a437f5e03f48bc4831e469bb045ca64435d01b5.tar.bz2 |
Use inline pics
-rw-r--r-- | noncore/settings/aqpkg/mainwin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/settings/aqpkg/mainwin.cpp b/noncore/settings/aqpkg/mainwin.cpp index 392d04d..dfe6d9c 100644 --- a/noncore/settings/aqpkg/mainwin.cpp +++ b/noncore/settings/aqpkg/mainwin.cpp @@ -193,17 +193,17 @@ MainWindow :: MainWindow() a->addTo( popup ); mb->insertItem( tr( "View" ), popup ); // Options menu popup = new QPopupMenu( this ); - a = new QAction( tr( "Configure" ), Resource::loadPixmap( "aqpkg/config" ), QString::null, 0, this, 0 ); + a = new QAction( tr( "Configure" ), Resource::loadPixmap( "SettingsIcon" ), QString::null, 0, this, 0 ); a->setWhatsThis( tr( "Click here to configure this application." ) ); connect( a, SIGNAL( activated() ), this, SLOT( displaySettings() ) ); a->addTo( popup ); mb->insertItem( tr( "Options" ), popup ); // Finish find toolbar creation a = new QAction( QString::null, Resource::loadPixmap( "close" ), QString::null, 0, this, 0 ); @@ -233,17 +233,17 @@ void MainWindow :: initMainWidget() networkPkgWindow = new QWidget( this ); QLabel *l = new QLabel( tr( "Servers:" ), networkPkgWindow ); serversList = new QComboBox( networkPkgWindow ); connect( serversList, SIGNAL( activated( int ) ), this, SLOT( serverSelected( int ) ) ); QWhatsThis::add( serversList, tr( "Click here to select a package feed." ) ); - installedIcon = Resource::loadPixmap( "aqpkg/installed" ); + installedIcon = Resource::loadPixmap( "installed" ); updatedIcon = Resource::loadPixmap( "aqpkg/updated" ); packagesList = new QListView( networkPkgWindow ); packagesList->addColumn( tr( "Packages" ), 225 ); QWhatsThis::add( packagesList, tr( "This is a listing of all packages for the server feed selected above.\n\nA blue dot next to the package name indicates that the package is currently installed.\n\nA blue dot with a star indicates that a newer version of the package is available from the server feed.\n\nClick inside the box at the left to select a package." ) ); QVBoxLayout *vbox = new QVBoxLayout( networkPkgWindow, 0, -1 ); QHBoxLayout *hbox1 = new QHBoxLayout( vbox, -1 ); |