summaryrefslogtreecommitdiffstats
path: root/kommander/editor/command.h
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-12-30 22:36:30 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-12-31 10:31:02 +0900
commit0ab4da104ad64b1f2ec73dadf996dce060e25f66 (patch)
tree9fbdb24a969cfa5b3c2064a4af9b903e1a5acfcc /kommander/editor/command.h
parentc83e576081ad92ea1b318938c8a2359664c052f6 (diff)
downloadtdewebdev-0ab4da104ad64b1f2ec73dadf996dce060e25f66.tar.gz
tdewebdev-0ab4da104ad64b1f2ec73dadf996dce060e25f66.zip
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> (cherry picked from commit ef7ea1f2a121513d75661a9d5bc5b75bbcd236c8)
Diffstat (limited to 'kommander/editor/command.h')
-rw-r--r--kommander/editor/command.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/kommander/editor/command.h b/kommander/editor/command.h
index 615a0348..f9e743a2 100644
--- a/kommander/editor/command.h
+++ b/kommander/editor/command.h
@@ -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,