author | mickeyl <mickeyl> | 2003-05-07 16:01:41 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2003-05-07 16:01:41 (UTC) |
commit | fd0b11fbfe36e87845df9282bb4ed090c7f51d35 (patch) (side-by-side diff) | |
tree | 06e94be413f05d62675556969cae772742628fb3 | |
parent | e150dfd5151aa59eb373aa58df5d9644c6c65b52 (diff) | |
download | opie-fd0b11fbfe36e87845df9282bb4ed090c7f51d35.zip opie-fd0b11fbfe36e87845df9282bb4ed090c7f51d35.tar.gz opie-fd0b11fbfe36e87845df9282bb4ed090c7f51d35.tar.bz2 |
g++3 fixlet
-rw-r--r-- | noncore/apps/opie-reader/StyleConsts.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/noncore/apps/opie-reader/StyleConsts.h b/noncore/apps/opie-reader/StyleConsts.h index 29d7501..5817b54 100644 --- a/noncore/apps/opie-reader/StyleConsts.h +++ b/noncore/apps/opie-reader/StyleConsts.h @@ -1,32 +1,30 @@ #ifndef __STYLECONSTS_H #define __STYLECONSTS_H typedef unsigned short StyleType; -#ifdef _WINDOWS #include <string.h> -#endif #include <stdlib.h> #include <qglobal.h> class QImage; struct GraphicLink { QImage* graphic; bool isLink; unsigned long link; GraphicLink(QImage* p, bool isLnk, unsigned long tgt) : graphic(p), isLink(isLnk), link(tgt) {} ~GraphicLink(); }; struct pmstore { unsigned int count; bool m_isScaleable; GraphicLink* graphic; pmstore(bool _canScale, QImage* p, bool isLnk, unsigned long tgt) : count(1), m_isScaleable(_canScale) { graphic = new GraphicLink(p, isLnk, tgt); } ~pmstore(); |