summaryrefslogtreecommitdiff
authorzecke <zecke>2004-10-12 11:54:23 (UTC)
committer zecke <zecke>2004-10-12 11:54:23 (UTC)
commit04f5d8a14e4f09196242e1ed777b521ed8e72916 (patch) (unidiff)
tree1bf39725dc37fc4bfa298d739169b4df69ced95c
parenta58a8f105b3f3e2b81165b4d9cebed5b59c0fb24 (diff)
downloadopie-04f5d8a14e4f09196242e1ed777b521ed8e72916.zip
opie-04f5d8a14e4f09196242e1ed777b521ed8e72916.tar.gz
opie-04f5d8a14e4f09196242e1ed777b521ed8e72916.tar.bz2
Give more meaningfull ConfigWidget names
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--noncore/todayplugins/stockticker/stocktickerlib/stocktickerplugin.cpp2
-rw-r--r--noncore/todayplugins/weather/weatherplugin.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/noncore/todayplugins/stockticker/stocktickerlib/stocktickerplugin.cpp b/noncore/todayplugins/stockticker/stocktickerlib/stocktickerplugin.cpp
index 628431c..c1397f7 100644
--- a/noncore/todayplugins/stockticker/stocktickerlib/stocktickerplugin.cpp
+++ b/noncore/todayplugins/stockticker/stocktickerlib/stocktickerplugin.cpp
@@ -37,24 +37,24 @@ QString StockTickerPlugin::pixmapNameWidget() const {
37 return "stockticker/stockticker"; 37 return "stockticker/stockticker";
38} 38}
39 39
40QWidget* StockTickerPlugin::widget( QWidget * wid ) { 40QWidget* StockTickerPlugin::widget( QWidget * wid ) {
41 return new StockTickerPluginWidget( wid, "StockTicker " ); 41 return new StockTickerPluginWidget( wid, "StockTicker " );
42} 42}
43 43
44QString StockTickerPlugin::pixmapNameConfig() const { 44QString StockTickerPlugin::pixmapNameConfig() const {
45 return "stockticker/stockticker"; 45 return "stockticker/stockticker";
46} 46}
47 47
48TodayConfigWidget* StockTickerPlugin::configWidget( QWidget* wid ) { 48TodayConfigWidget* StockTickerPlugin::configWidget( QWidget* wid ) {
49 return new StocktickerPluginConfig( wid , "Stockticker" ); 49 return new StocktickerPluginConfig( wid , "Stockticker Config" );
50} 50}
51 51
52QString StockTickerPlugin::appName() const { 52QString StockTickerPlugin::appName() const {
53 return "stockticker"; 53 return "stockticker";
54} 54}
55 55
56bool StockTickerPlugin::excludeFromRefresh() const { 56bool StockTickerPlugin::excludeFromRefresh() const {
57 57
58return true; 58return true;
59} 59}
60 60
diff --git a/noncore/todayplugins/weather/weatherplugin.cpp b/noncore/todayplugins/weather/weatherplugin.cpp
index 80e1cc6..9cef1c8 100644
--- a/noncore/todayplugins/weather/weatherplugin.cpp
+++ b/noncore/todayplugins/weather/weatherplugin.cpp
@@ -54,25 +54,25 @@ QString WeatherPlugin::pixmapNameWidget() const
54QWidget* WeatherPlugin::widget( QWidget * wid ) 54QWidget* WeatherPlugin::widget( QWidget * wid )
55{ 55{
56 return new WeatherPluginWidget( wid, "Weather" ); 56 return new WeatherPluginWidget( wid, "Weather" );
57} 57}
58 58
59QString WeatherPlugin::pixmapNameConfig() const 59QString WeatherPlugin::pixmapNameConfig() const
60{ 60{
61 return "todayweatherplugin/weather"; 61 return "todayweatherplugin/weather";
62} 62}
63 63
64TodayConfigWidget* WeatherPlugin::configWidget( QWidget* wid ) 64TodayConfigWidget* WeatherPlugin::configWidget( QWidget* wid )
65{ 65{
66 return new WeatherPluginConfig( wid, "Weather" ); 66 return new WeatherPluginConfig( wid, "Weather Config" );
67} 67}
68 68
69QString WeatherPlugin::appName() const 69QString WeatherPlugin::appName() const
70{ 70{
71 return "Weather"; 71 return "Weather";
72} 72}
73 73
74bool WeatherPlugin::excludeFromRefresh() const { 74bool WeatherPlugin::excludeFromRefresh() const {
75 75
76return true; 76return true;
77} 77}
78 78