[Kstars-devel] KDE/kdeedu/kstars/kstars
Jasem Mutlaq
mutlaqja at ikarustech.com
Sat May 30 02:07:19 CEST 2009
SVN commit 975365 by mutlaqja:
Adding missing icons and fixing misconfigured ones.
CCMAIL:kstars-devel at kde.org
M +1 -1 kstarsactions.cpp
M +4 -1 kstarsinit.cpp
--- trunk/KDE/kdeedu/kstars/kstars/kstarsactions.cpp #975364:975365
@@ -413,7 +413,7 @@
#ifdef HAVE_INDI_H
opsindi = new OpsINDI (this);
- dialog->addPage(opsindi, i18n("INDI"), "kstars_INDI");
+ dialog->addPage(opsindi, i18n("INDI"), "kstars");
#endif
#ifdef HAVE_XPLANET
--- trunk/KDE/kdeedu/kstars/kstars/kstarsinit.cpp #975364:975365
@@ -315,7 +315,7 @@
initFOV();
ka = actionCollection()->addAction( "geolocation" );
- ka->setIcon( KIcon( "world" ) );
+ ka->setIcon( KIcon( "applications-internet" ) );
ka->setText( i18nc( "Location on Earth", "&Geographic..." ) );
ka->setShortcuts( KShortcut( Qt::CTRL+Qt::Key_G ) );
connect( ka, SIGNAL( triggered() ), this, SLOT( slotGeoLocator() ) );
@@ -392,6 +392,7 @@
#ifndef Q_WS_WIN
ka = actionCollection()->addAction( "telescope_wizard");
+ ka->setIcon( KIcon( "tools-wizard" ) );
ka->setText( i18n("Telescope Wizard...") );
connect( ka, SIGNAL( triggered() ), this, SLOT( slotTelescopeWizard() ) );
@@ -401,7 +402,9 @@
//connect( ka, SIGNAL( triggered() ), this, SLOT( slotTelescopeProperties() ) );
ka = actionCollection()->addAction( "device_manager");
+
ka->setText( i18n("Device Manager...") );
+ ka->setIcon( KIcon( "network-server" ) );
connect( ka, SIGNAL( triggered() ), this, SLOT( slotINDIDriver() ) );
ka = actionCollection()->addAction( "capture_sequence");
More information about the Kstars-devel
mailing list