summaryrefslogtreecommitdiff
path: root/core/settings/launcher/taskbarsettings.cpp
authorharlekin <harlekin>2002-09-21 18:13:18 (UTC)
committer harlekin <harlekin>2002-09-21 18:13:18 (UTC)
commit3838d736783c5d33197cb8d99f611ab214460bd9 (patch) (unidiff)
tree654ac2c3344791245d3efd0eacfaf71f680d4bd7 /core/settings/launcher/taskbarsettings.cpp
parentc0c3232de8f21a7a0ad0918b9e6fb7bd33d01468 (diff)
downloadopie-3838d736783c5d33197cb8d99f611ab214460bd9.zip
opie-3838d736783c5d33197cb8d99f611ab214460bd9.tar.gz
opie-3838d736783c5d33197cb8d99f611ab214460bd9.tar.bz2
usual
Diffstat (limited to 'core/settings/launcher/taskbarsettings.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/settings/launcher/taskbarsettings.cpp23
1 files changed, 12 insertions, 11 deletions
diff --git a/core/settings/launcher/taskbarsettings.cpp b/core/settings/launcher/taskbarsettings.cpp
index 8f16951..7df9a68 100644
--- a/core/settings/launcher/taskbarsettings.cpp
+++ b/core/settings/launcher/taskbarsettings.cpp
@@ -88,17 +88,18 @@ void TaskbarSettings::init ( )
88 88
89 QLibrary *lib = new QLibrary ( path + "/" + *it ); 89 QLibrary *lib = new QLibrary ( path + "/" + *it );
90 lib-> queryInterface ( IID_TaskbarNamedApplet, (QUnknownInterface**) &iface ); 90 lib-> queryInterface ( IID_TaskbarNamedApplet, (QUnknownInterface**) &iface );
91 if ( iface ) { 91 if ( iface ) {
92 QString lang = getenv( "LANG" ); 92
93 QTranslator *trans = new QTranslator ( qApp ); 93 QString lang = getenv( "LANG" );
94 QString type = (*it). left ((*it). find (".")); 94 QTranslator *trans = new QTranslator ( qApp );
95 QString tfn = QPEApplication::qpeDir ( ) + "/i18n/" + lang + "/" + type + ".qm"; 95 QString type = (*it). left ((*it). find ("."));
96 if ( trans-> load ( tfn )) 96 QString tfn = QPEApplication::qpeDir ( ) + "/i18n/" + lang + "/" + type + ".qm";
97 qApp-> installTranslator ( trans ); 97 if ( trans-> load ( tfn ))
98 qApp-> installTranslator ( trans );
98 else 99 else
99 delete trans; 100 delete trans;
100 name = iface-> name ( ); 101 name = iface-> name ( );
101 icon = iface-> icon ( ); 102 icon = iface-> icon ( );
102 iface-> release ( ); 103 iface-> release ( );
103 lib-> unload ( ); 104 lib-> unload ( );
104 } else { 105 } else {
@@ -106,7 +107,7 @@ void TaskbarSettings::init ( )
106 name = (*it). mid ( 3 ); 107 name = (*it). mid ( 3 );
107 int sep = name. find( ".so" ); 108 int sep = name. find( ".so" );
108 if ( sep > 0 ) 109 if ( sep > 0 )
109 name. truncate ( sep ); 110 name. truncate ( sep );
110 sep = name. find ( "applet" ); 111 sep = name. find ( "applet" );
111 if ( sep == (int) name.length ( ) - 6 ) 112 if ( sep == (int) name.length ( ) - 6 )
112 name. truncate ( sep ); 113 name. truncate ( sep );