diff options
Diffstat (limited to 'backends/epoc/src/ScummApp.h')
-rw-r--r-- | backends/epoc/src/ScummApp.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/backends/epoc/src/ScummApp.h b/backends/epoc/src/ScummApp.h index 1bcf92522c..56ca8b68c3 100644 --- a/backends/epoc/src/ScummApp.h +++ b/backends/epoc/src/ScummApp.h @@ -28,7 +28,8 @@ #include <eikapp.h> #include <e32base.h> #include <sdlapp.h> -#ifdef EPOC_AS_APP + +#if defined (EPOC_AS_APP) && !defined (UIQ3) && !(__SERIES60_30__) #include "ECompXL.h" #endif @@ -38,8 +39,10 @@ public: ~CScummApp(); TUid AppDllUid() const; -#ifdef EPOC_AS_APP +#if defined (EPOC_AS_APP) && !defined (UIQ3) && !(__SERIES60_30__) TECompXL iECompXL; #endif }; #endif + + |