summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/chart/element.h8
-rw-r--r--examples/demo/dnd/dnd.h2
-rw-r--r--examples/tqtl/tqvaluelistiterator.cpp3
3 files changed, 0 insertions, 13 deletions
diff --git a/examples/chart/element.h b/examples/chart/element.h
index 4241a7fee..88a278aa0 100644
--- a/examples/chart/element.h
+++ b/examples/chart/element.h
@@ -57,14 +57,6 @@ public:
void setProX( int index, double value );
void setProY( int index, double value );
-#ifdef TQ_FULL_TEMPLATE_INSTANTIATION
- // xlC 3.x workaround
- TQ_DUMMY_COMPARISON_OPERATOR(Element)
- bool operator!=( const Element& e) const {
- return ( !(e == *this) );
- }
-#endif
-
private:
void init( double value, TQColor valueColor, int valuePattern,
const TQString& label, TQColor labelColor );
diff --git a/examples/demo/dnd/dnd.h b/examples/demo/dnd/dnd.h
index b064b9c8f..96a86debc 100644
--- a/examples/demo/dnd/dnd.h
+++ b/examples/demo/dnd/dnd.h
@@ -13,8 +13,6 @@ public:
TQString name() { return _name; }
TQPixmap *pixmap() { return &_pixmap; }
- TQ_DUMMY_COMPARISON_OPERATOR( IconItem )
-
protected:
TQPixmap loadPixmap( const TQString& name );
diff --git a/examples/tqtl/tqvaluelistiterator.cpp b/examples/tqtl/tqvaluelistiterator.cpp
index cfb87c31d..49f233934 100644
--- a/examples/tqtl/tqvaluelistiterator.cpp
+++ b/examples/tqtl/tqvaluelistiterator.cpp
@@ -25,9 +25,6 @@ public:
int salary() const { return s; }
void setSalary( int salary ) { s = salary; }
- // this is here to support very old compilers
- TQ_DUMMY_COMPARISON_OPERATOR( Employee )
-
private:
TQString n;
int s;