author | harlekin <harlekin> | 2003-03-08 20:55:07 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2003-03-08 20:55:07 (UTC) |
commit | 9e482f354732a04aebfe8ab9a9eb5cfaad5b3cdb (patch) (unidiff) | |
tree | 7c81ff40778a7aa417634982d9152de17c8e89a2 | |
parent | 4769ba5abff75e14157b2e878a890a677d223e87 (diff) | |
download | opie-9e482f354732a04aebfe8ab9a9eb5cfaad5b3cdb.zip opie-9e482f354732a04aebfe8ab9a9eb5cfaad5b3cdb.tar.gz opie-9e482f354732a04aebfe8ab9a9eb5cfaad5b3cdb.tar.bz2 |
use go from inline as startmenu icon
-rw-r--r-- | core/launcher/startmenu.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/launcher/startmenu.cpp b/core/launcher/startmenu.cpp index 39e07c8..2871233 100644 --- a/core/launcher/startmenu.cpp +++ b/core/launcher/startmenu.cpp | |||
@@ -88,13 +88,13 @@ void StartMenu::loadOptions() | |||
88 | startButtonIsFlat = ( tmpBoolString2 == "TRUE" ) ? TRUE : FALSE; | 88 | startButtonIsFlat = ( tmpBoolString2 == "TRUE" ) ? TRUE : FALSE; |
89 | QString tmpBoolString3 = config.readEntry( "UseMRUList", "TRUE" ); | 89 | QString tmpBoolString3 = config.readEntry( "UseMRUList", "TRUE" ); |
90 | popupMenuSidePixmap = config.readEntry( "PopupMenuSidePixmap", "launcher/sidebar" ); | 90 | popupMenuSidePixmap = config.readEntry( "PopupMenuSidePixmap", "launcher/sidebar" ); |
91 | startButtonPixmap = config.readEntry( "StartButtonPixmap", "launcher/start_button" ); | 91 | startButtonPixmap = config.readEntry( "StartButtonPixmap", "go" ); |
92 | #else | 92 | #else |
93 | // Basically just #include the .qpe_menu.conf file settings | 93 | // Basically just #include the .qpe_menu.conf file settings |
94 | useWidePopupMenu = FALSE; | 94 | useWidePopupMenu = FALSE; |
95 | popupMenuSidePixmap = "launcher/sidebar"; | 95 | popupMenuSidePixmap = "launcher/sidebar"; |
96 | startButtonIsFlat = TRUE; | 96 | startButtonIsFlat = TRUE; |
97 | startButtonPixmap = "launcher/start_button"; // No tr | 97 | startButtonPixmap = "go"; // No tr |
98 | #endif | 98 | #endif |
99 | } | 99 | } |
100 | 100 | ||