author | drw <drw> | 2005-05-04 22:11:13 (UTC) |
---|---|---|
committer | drw <drw> | 2005-05-04 22:11:13 (UTC) |
commit | 4d719fdcf636f855cb2def7c715a13420ce8a1b6 (patch) (unidiff) | |
tree | afc8110e06cb32fa8218d281b84fb69b1d68ece2 /core | |
parent | 6378f86d96d8d0003cdb9242871066b2db640cec (diff) | |
download | opie-4d719fdcf636f855cb2def7c715a13420ce8a1b6.zip opie-4d719fdcf636f855cb2def7c715a13420ce8a1b6.tar.gz opie-4d719fdcf636f855cb2def7c715a13420ce8a1b6.tar.bz2 |
Resource -> OResource and add missing lib dependencies
-rw-r--r-- | core/settings/citytime/opie-citytime.control | 2 | ||||
-rw-r--r-- | core/settings/citytime/zonemap.cpp | 10 |
2 files changed, 7 insertions, 5 deletions
diff --git a/core/settings/citytime/opie-citytime.control b/core/settings/citytime/opie-citytime.control index 03fa555..71ee7d0 100644 --- a/core/settings/citytime/opie-citytime.control +++ b/core/settings/citytime/opie-citytime.control | |||
@@ -4,7 +4,7 @@ Priority: optional | |||
4 | Section: opie/settings | 4 | Section: opie/settings |
5 | Maintainer: Maximilian Reiss <harlekin@handhelds.org> | 5 | Maintainer: Maximilian Reiss <harlekin@handhelds.org> |
6 | Architecture: arm | 6 | Architecture: arm |
7 | Depends: task-opie-minimal | 7 | Depends: task-opie-minimal, libopiecore2 |
8 | Description: Time-zone / world clock settings | 8 | Description: Time-zone / world clock settings |
9 | The time-zone manager for the Opie environment. | 9 | The time-zone manager for the Opie environment. |
10 | Version: $QPE_VERSION$EXTRAVERSION | 10 | Version: $QPE_VERSION$EXTRAVERSION |
diff --git a/core/settings/citytime/zonemap.cpp b/core/settings/citytime/zonemap.cpp index e4a25ef..7edc45f 100644 --- a/core/settings/citytime/zonemap.cpp +++ b/core/settings/citytime/zonemap.cpp | |||
@@ -24,9 +24,10 @@ | |||
24 | #include "zonemap.h" | 24 | #include "zonemap.h" |
25 | 25 | ||
26 | /* OPIE */ | 26 | /* OPIE */ |
27 | #include <qpe/resource.h> | ||
28 | #include <qpe/qpeapplication.h> | ||
29 | #include <opie2/odebug.h> | 27 | #include <opie2/odebug.h> |
28 | #include <opie2/oresource.h> | ||
29 | |||
30 | #include <qpe/qpeapplication.h> | ||
30 | 31 | ||
31 | /* QT */ | 32 | /* QT */ |
32 | #include <qfile.h> | 33 | #include <qfile.h> |
@@ -160,9 +161,10 @@ ZoneMap::ZoneMap( QWidget *parent, const char* name ) | |||
160 | // just set the current image to point | 161 | // just set the current image to point |
161 | pixCurr = new QPixmap(); | 162 | pixCurr = new QPixmap(); |
162 | 163 | ||
163 | QPixmap pixZoom = Resource::loadPixmap( "mag" ); | 164 | QPixmap pixZoom = Opie::Core::OResource::loadPixmap( "mag", Opie::Core::OResource::SmallIcon ); |
164 | 165 | ||
165 | cmdZoom = new QToolButton( this, "Zoom command" ); | 166 | cmdZoom = new QToolButton( this, "Zoom command" ); |
167 | cmdZoom->setUsesBigPixmap( qApp->desktop()->size().width() > 330 ); | ||
166 | cmdZoom->setPixmap( pixZoom ); | 168 | cmdZoom->setPixmap( pixZoom ); |
167 | cmdZoom->setToggleButton( true ); | 169 | cmdZoom->setToggleButton( true ); |
168 | 170 | ||
@@ -602,7 +604,7 @@ static inline void darken( QImage *pImage, int start, int stop, int row ) | |||
602 | 604 | ||
603 | void ZoneMap::makeMap( int w, int h ) | 605 | void ZoneMap::makeMap( int w, int h ) |
604 | { | 606 | { |
605 | QImage imgOrig = Resource::loadImage( strMAP ); | 607 | QImage imgOrig = Opie::Core::OResource::loadImage( strMAP ); |
606 | if ( imgOrig.isNull() ) { | 608 | if ( imgOrig.isNull() ) { |
607 | QMessageBox::warning( this, | 609 | QMessageBox::warning( this, |
608 | tr( "Couldn't Find Map" ), | 610 | tr( "Couldn't Find Map" ), |