summaryrefslogtreecommitdiff
authordrw <drw>2002-12-29 23:36:15 (UTC)
committer drw <drw>2002-12-29 23:36:15 (UTC)
commit46df3c62a8d630fe7e0b578566c05b6b10218296 (patch) (unidiff)
tree45f715da6dbf846aee33aa05f04afbdb58bbcd0c
parentd1fcfdb7fee76146f89a6ad763349ca5aa79d247 (diff)
downloadopie-46df3c62a8d630fe7e0b578566c05b6b10218296.zip
opie-46df3c62a8d630fe7e0b578566c05b6b10218296.tar.gz
opie-46df3c62a8d630fe7e0b578566c05b6b10218296.tar.bz2
Correctly display message when unable to get weather info & add qwhatsthis to configuration widget.
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/todayplugins/weather/weatherconfig.cpp7
-rw-r--r--noncore/todayplugins/weather/weatherpluginwidget.cpp7
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
@@ -64,2 +64,3 @@ WeatherPluginConfig::WeatherPluginConfig( QWidget *parent, const char* name)
64 layout->addMultiCellWidget( label, 0, 0, 0, 1 ); 64 layout->addMultiCellWidget( label, 0, 0, 0, 1 );
65 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." ) );
65 66
@@ -69,2 +70,3 @@ WeatherPluginConfig::WeatherPluginConfig( QWidget *parent, const char* name)
69 layout->addMultiCellWidget( locationEdit, 1, 1, 0, 1 ); 70 layout->addMultiCellWidget( locationEdit, 1, 1, 0, 1 );
71 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." ) );
70 72
@@ -85,2 +87,3 @@ WeatherPluginConfig::WeatherPluginConfig( QWidget *parent, const char* name)
85 layout->addMultiCellWidget( metricCB, 3, 3, 0, 1 ); 87 layout->addMultiCellWidget( metricCB, 3, 3, 0, 1 );
88 QWhatsThis::add( metricCB, tr( "Click here to select type of units displayed." ) );
86 89
@@ -89,2 +92,3 @@ WeatherPluginConfig::WeatherPluginConfig( QWidget *parent, const char* name)
89 layout->addWidget( label, 4, 0 ); 92 layout->addWidget( label, 4, 0 );
93 QWhatsThis::add( label, tr( "Select how often (in minutes) you want the weather to be updated." ) );
90 94
@@ -94,2 +98,3 @@ WeatherPluginConfig::WeatherPluginConfig( QWidget *parent, const char* name)
94 layout->addWidget( timerDelaySB, 4, 1 ); 98 layout->addWidget( timerDelaySB, 4, 1 );
99 QWhatsThis::add( timerDelaySB, tr( "Select how often (in minutes) you want the weather to be updated." ) );
95} 100}
@@ -126,2 +131,2 @@ void WeatherPluginConfig::slotCopyLink()
126} 131}
127*/ \ No newline at end of file 132*/
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
@@ -116,3 +116,4 @@ void WeatherPluginWidget::displayWeather()
116 QFile file( localFile ); 116 QFile file( localFile );
117 if ( file.open( IO_ReadOnly ) ) 117
118 if ( file.size() > 0 && file.open( IO_ReadOnly ) )
118 { 119 {
@@ -152,3 +153,3 @@ void WeatherPluginWidget::displayWeather()
152 { 153 {
153 weatherLabel->setText( tr( "Current weather data not available.\nTry looking out the window." ) ); 154 weatherLabel->setText( tr( "Current weather data not available." ) );
154 } 155 }
@@ -321,3 +322,3 @@ void WeatherPluginWidget::dataRetrieved( OProcess *process )
321 { 322 {
322 weatherLabel->setText( tr( "Current weather data not available.\nTry looking out the window." ) ); 323 weatherLabel->setText( tr( "Current weather data not available." ) );
323 } 324 }