author | mickeyl <mickeyl> | 2004-05-16 22:10:58 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-05-16 22:10:58 (UTC) |
commit | 1827ce23d0719a22c14613dc5859093818da1d0a (patch) (unidiff) | |
tree | 2c3363a6ae3e0e307a872ef176b8e06bf0b49595 | |
parent | a2ae46cf5a04a10042f84731a18a4471d633be59 (diff) | |
download | opie-1827ce23d0719a22c14613dc5859093818da1d0a.zip opie-1827ce23d0719a22c14613dc5859093818da1d0a.tar.gz opie-1827ce23d0719a22c14613dc5859093818da1d0a.tar.bz2 |
make this compile with gcc 3.4
we want to stay gcc 3.4 compliant, so folks please update your compilers
-rw-r--r-- | libopie2/opiepim/core/opimaccessfactory.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libopie2/opiepim/core/opimaccessfactory.h b/libopie2/opiepim/core/opimaccessfactory.h index eecfa96..283b6ab 100644 --- a/libopie2/opiepim/core/opimaccessfactory.h +++ b/libopie2/opiepim/core/opimaccessfactory.h | |||
@@ -57,7 +57,6 @@ namespace Opie { | |||
57 | * @author Stefan Eilers | 57 | * @author Stefan Eilers |
58 | * @version 0.1 | 58 | * @version 0.1 |
59 | */ | 59 | */ |
60 | */ | ||
61 | 60 | ||
62 | template<class T> | 61 | template<class T> |
63 | class OPimAccessFactory | 62 | class OPimAccessFactory |
@@ -105,9 +104,9 @@ class OPimAccessFactory | |||
105 | * @see OPimGlobal | 104 | * @see OPimGlobal |
106 | * | 105 | * |
107 | */ | 106 | */ |
108 | static T* default( OPimGlobal::PimType type, const QString& appName ){ | 107 | static T* default( typename OPimGlobal::PimType type, const QString& appName ){ |
109 | 108 | ||
110 | return create( type, OPimGlobal::DEFAULT, appName ) | 109 | return create( type, OPimGlobal::DEFAULT, appName ); |
111 | 110 | ||
112 | } | 111 | } |
113 | }; | 112 | }; |