summaryrefslogtreecommitdiff
path: root/libopie2/opiecore
authoreilers <eilers>2004-07-18 12:05:48 (UTC)
committer eilers <eilers>2004-07-18 12:05:48 (UTC)
commit4542dd2fd841179a064af1865b0701bdab7eaaf5 (patch) (side-by-side diff)
treef37c7a6c15000eef0a4e9416e06af02b39a7a5ef /libopie2/opiecore
parent987705b1c4fac4a33b82b10ef1bac3ebdb49b1b8 (diff)
downloadopie-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
Diffstat (limited to 'libopie2/opiecore') (more/less context) (show whitespace changes)
-rw-r--r--libopie2/opiecore/opluginloader.h2
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
@@ -1,44 +1,44 @@
/*
* LGPLv2 or later
* zecke@handhelds.org
*/
#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();
bool isEmpty()const;
bool operator==( const OPluginItem& )const;
bool operator!=( const OPluginItem& )const;
QString name()const;