-rw-r--r-- | noncore/todayplugins/weather/weatherconfig.cpp | 7 | ||||
-rw-r--r-- | noncore/todayplugins/weather/weatherpluginwidget.cpp | 7 |
2 files changed, 10 insertions, 4 deletions
diff --git a/noncore/todayplugins/weather/weatherconfig.cpp b/noncore/todayplugins/weather/weatherconfig.cpp index fe10883..99ee2a0 100644 --- a/noncore/todayplugins/weather/weatherconfig.cpp +++ b/noncore/todayplugins/weather/weatherconfig.cpp @@ -63,4 +63,5 @@ WeatherPluginConfig::WeatherPluginConfig( QWidget *parent, const char* name) label->setMaximumHeight( fh + 3 ); layout->addMultiCellWidget( label, 0, 0, 0, 1 ); + QWhatsThis::add( label, tr( "Enter the 4 letter code for the desired location here. See http://www.nws.noaa.gov/tg/siteloc.shtml to find a location near you." ) ); locationEdit = new QLineEdit( config.readEntry( "Location", "" ), this ); @@ -68,4 +69,5 @@ WeatherPluginConfig::WeatherPluginConfig( QWidget *parent, const char* name) locationEdit->setFocus(); layout->addMultiCellWidget( locationEdit, 1, 1, 0, 1 ); + QWhatsThis::add( locationEdit, tr( "Enter the 4 letter code for the desired location here. See http://www.nws.noaa.gov/tg/siteloc.shtml to find a location near you." ) ); label = new QLabel( tr( "Visit http://www.nws.noaa.gov/tg/siteloc.shtml to find the nearest location." ), this ); @@ -84,8 +86,10 @@ WeatherPluginConfig::WeatherPluginConfig( QWidget *parent, const char* name) metricCB->setChecked( config.readBoolEntry( "Metric", TRUE ) ); layout->addMultiCellWidget( metricCB, 3, 3, 0, 1 ); + QWhatsThis::add( metricCB, tr( "Click here to select type of units displayed." ) ); label = new QLabel( tr( "Update frequency (in minutes):" ), this ); label->setMaximumHeight( fh + 3 ); layout->addWidget( label, 4, 0 ); + QWhatsThis::add( label, tr( "Select how often (in minutes) you want the weather to be updated." ) ); timerDelaySB = new QSpinBox( 1, 60, 1, this ); @@ -93,4 +97,5 @@ WeatherPluginConfig::WeatherPluginConfig( QWidget *parent, const char* name) timerDelaySB->setValue( config.readNumEntry( "Frequency", 5 ) ); layout->addWidget( timerDelaySB, 4, 1 ); + QWhatsThis::add( timerDelaySB, tr( "Select how often (in minutes) you want the weather to be updated." ) ); } @@ -125,3 +130,3 @@ void WeatherPluginConfig::slotCopyLink() QPEApplication::clipboard()->setText( "http://www.nws.noaa.gov/tg/siteloc.shtml" ); } -*/
\ No newline at end of file +*/ diff --git a/noncore/todayplugins/weather/weatherpluginwidget.cpp b/noncore/todayplugins/weather/weatherpluginwidget.cpp index f4ea0f2..800fdcb 100644 --- a/noncore/todayplugins/weather/weatherpluginwidget.cpp +++ b/noncore/todayplugins/weather/weatherpluginwidget.cpp @@ -115,5 +115,6 @@ void WeatherPluginWidget::displayWeather() QFile file( localFile ); - if ( file.open( IO_ReadOnly ) ) + + if ( file.size() > 0 && file.open( IO_ReadOnly ) ) { QTextStream data( &file ); @@ -151,5 +152,5 @@ void WeatherPluginWidget::displayWeather() else { - weatherLabel->setText( tr( "Current weather data not available.\nTry looking out the window." ) ); + weatherLabel->setText( tr( "Current weather data not available." ) ); } } @@ -320,5 +321,5 @@ void WeatherPluginWidget::dataRetrieved( OProcess *process ) else { - weatherLabel->setText( tr( "Current weather data not available.\nTry looking out the window." ) ); + weatherLabel->setText( tr( "Current weather data not available." ) ); } } |