author | eilers <eilers> | 2004-07-18 12:05:48 (UTC) |
---|---|---|
committer | eilers <eilers> | 2004-07-18 12:05:48 (UTC) |
commit | 4542dd2fd841179a064af1865b0701bdab7eaaf5 (patch) (side-by-side diff) | |
tree | f37c7a6c15000eef0a4e9416e06af02b39a7a5ef | |
parent | 987705b1c4fac4a33b82b10ef1bac3ebdb49b1b8 (diff) | |
download | opie-4542dd2fd841179a064af1865b0701bdab7eaaf5.zip opie-4542dd2fd841179a064af1865b0701bdab7eaaf5.tar.gz opie-4542dd2fd841179a064af1865b0701bdab7eaaf5.tar.bz2 |
Removed forward deklaration of template class. This caused double defined
linker errors on mac Gcc 3.3
-rw-r--r-- | libopie2/opiecore/opluginloader.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libopie2/opiecore/opluginloader.h b/libopie2/opiecore/opluginloader.h index 740551c..7582d29 100644 --- a/libopie2/opiecore/opluginloader.h +++ b/libopie2/opiecore/opluginloader.h @@ -4,33 +4,33 @@ */ #ifndef ODP_CORE_OPLUGIN_LOADER_H #define ODP_CORE_OPLUGIN_LOADER_H #include <qpe/qlibrary.h> #include <qptrdict.h> #include <qstringlist.h> namespace Opie { namespace Core { class OConfig; namespace Internal { class OPluginLibraryHolder; } -template class QPtrDict<QLibrary>; +// template class QPtrDict<QLibrary>; /** * \brief A small item representing the Plugin Information * This class contains the information about a Plugin. It contains * a translated name if available to the system, a config key, * and the path location. * * @since 1.2 * */ class OPluginItem { public: typedef QValueList<OPluginItem> List; OPluginItem(); OPluginItem( const QString& name, const QString& path, bool enabled = true, int pos = -1 ); ~OPluginItem(); |