diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-12-30 22:36:30 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-12-31 10:31:02 +0900 |
| commit | 0ab4da104ad64b1f2ec73dadf996dce060e25f66 (patch) | |
| tree | 9fbdb24a969cfa5b3c2064a4af9b903e1a5acfcc /kommander/editor/command.h | |
| parent | c83e576081ad92ea1b318938c8a2359664c052f6 (diff) | |
| download | tdewebdev-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.h | 12 |
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, |
