diff options
| -rw-r--r-- | weather/debian/control | 1 | ||||
| -rw-r--r-- | weather/main.cpp | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/weather/debian/control b/weather/debian/control index 8ad6845..ed1fb28 100644 --- a/weather/debian/control +++ b/weather/debian/control @@ -37,4 +37,5 @@ XB-Maemo-Icon-26: xuw0/gYwltTXifH4n/yH+QPu7b91lhfMDQAAAABJRU5ErkJggg== Description: Qt Mobile Demo: Weather Weather demo is a demo application which allows you to check the weather around the world in a cute way. + Requires connection to the Internet. Source code: http://qt.gitorious.org/qt-labs/mobile-demos diff --git a/weather/main.cpp b/weather/main.cpp index 2b9bcdf..b2681a9 100644 --- a/weather/main.cpp +++ b/weather/main.cpp @@ -62,7 +62,7 @@ int main(int argc, char **argv) #ifdef Q_OS_SYMBIAN const bool connected = connect(); #else - const bool connected = false; + const bool connected = true; #endif if (connected) |
