Remove use of TQ_FULL_TEMPLATE_INSTANTIATION. The #define was used for

some very old compilers which has issues with template instantiation.
We are now using c++17 compilers, so this is unnecessary.

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/67/head
Michele Calgaro 2 weeks ago
parent a5ec2f60ed
commit ef7ea1f2a1
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -659,9 +659,6 @@ public:
{
TQString text;
TQPixmap pix;
#if defined(TQ_FULL_TEMPLATE_INSTANTIATION)
bool operator==( const Item & ) const { return false; }
#endif
};
PopulateListBoxCommand( const TQString &n, FormWindow *fw,
@ -685,9 +682,6 @@ public:
{
TQString text;
TQPixmap pix;
#if defined(TQ_FULL_TEMPLATE_INSTANTIATION)
bool operator==( const Item & ) const { return false; }
#endif
};
PopulateIconViewCommand( const TQString &n, FormWindow *fw,
@ -745,9 +739,6 @@ public:
{
TQString text;
TQPixmap pix;
#if defined(TQ_FULL_TEMPLATE_INSTANTIATION)
bool operator==( const Row& ) const { return false; }
#endif
};
struct Column
@ -755,9 +746,6 @@ public:
TQString text;
TQPixmap pix;
TQString field;
#if defined(TQ_FULL_TEMPLATE_INSTANTIATION)
bool operator==( const Column& ) const { return false; }
#endif
};
PopulateTableCommand( const TQString &n, FormWindow *fw, TQTable *t,

@ -48,12 +48,7 @@ class BreakLayoutCommand;
class TQPixmap;
class TQSizeGrip;
class FormFile;
#if defined(TQ_FULL_TEMPLATE_INSTANTIATION)
#include "orderindicator.h"
#else
class OrderIndicator;
#endif
class FormWindow : public TQWidget
{

@ -71,9 +71,6 @@ private:
TQString text;
TQPixmap pixmap;
bool clickable, resizable;
#if defined(TQ_FULL_TEMPLATE_INSTANTIATION)
bool operator==( const Column& ) const { return false; }
#endif
};
private:

@ -52,12 +52,7 @@ class TQWorkspace;
class MessageLog;
class ReplaceDialog;
class Workspace;
#if defined(TQ_FULL_TEMPLATE_INSTANTIATION)
#include <tqtoolbar.h>
#else
class TQToolBar;
#endif
class Preferences;
namespace KParts {

@ -125,9 +125,6 @@ public:
{
TQString name;
TQStringList args;
#if defined(TQ_FULL_TEMPLATE_INSTANTIATION)
bool operator==( const EventDescription& ) const { return false; }
#endif
};
MetaDataBase();

@ -109,9 +109,6 @@ private:
TQString name;
TQPixmap pix;
TQString field;
#if defined(TQ_FULL_TEMPLATE_INSTANTIATION)
bool operator==( const Field& ) const { return false; }
#endif
};
struct EventFunction

Loading…
Cancel
Save