summaryrefslogtreecommitdiff
path: root/core/launcher/main.cpp
Side-by-side diff
Diffstat (limited to 'core/launcher/main.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/main.cpp56
1 files changed, 1 insertions, 55 deletions
diff --git a/core/launcher/main.cpp b/core/launcher/main.cpp
index a86aca6..b119399 100644
--- a/core/launcher/main.cpp
+++ b/core/launcher/main.cpp
@@ -74,52 +74,3 @@ static void refreshTimeZoneConfig()
{
- /* ### FIXME timezone handling */
-#if 0
- // We need to help WorldTime in setting up its configuration for
- // the current translation
- // BEGIN no tr
- const char *defaultTz[] = {
- "America/New_York",
- "America/Los_Angeles",
- "Europe/Oslo",
- "Asia/Tokyo",
- "Asia/Hong_Kong",
- "Australia/Brisbane",
- 0
- };
- // END no tr
-
- TimeZone curZone;
- QString zoneID;
- int zoneIndex;
- Config cfg = Config( "WorldTime" );
- cfg.setGroup( "TimeZones" );
- if (!cfg.hasKey( "Zone0" )){
- // We have no existing timezones use the defaults which are untranslated strings
- QString currTz = TimeZone::current().id();
- QStringList zoneDefaults;
- zoneDefaults.append( currTz );
- for ( int i = 0; defaultTz[i] && zoneDefaults.count() < 6; i++ ) {
- if ( defaultTz[i] != currTz )
- zoneDefaults.append( defaultTz[i] );
- }
- zoneIndex = 0;
- for (QStringList::Iterator it = zoneDefaults.begin(); it != zoneDefaults.end() ; ++it){
- cfg.writeEntry( "Zone" + QString::number( zoneIndex ) , *it);
- zoneIndex++;
- }
- }
- // We have an existing list of timezones refresh the
- // translations of TimeZone name
- zoneIndex = 0;
- while (cfg.hasKey( "Zone"+ QString::number( zoneIndex ))){
- zoneID = cfg.readEntry( "Zone" + QString::number( zoneIndex ));
- curZone = TimeZone( zoneID );
- if ( !curZone.isValid() ){
- odebug << "initEnvironment() Invalid TimeZone " << zoneID << "" << oendl;
- break;
- }
- cfg.writeEntry( "ZoneName" + QString::number( zoneIndex ), curZone.city() );
- zoneIndex++;
- }
-#endif
+ /* ### FIXME timezone handling for qtopia */
}
@@ -152,7 +103,2 @@ void initEnvironment()
-#if 0
- setenv( "QWS_SIZE", "240x320", 0 );
-#endif
-
-