diff options
author | Timothy Pearson <[email protected]> | 2012-02-17 16:07:32 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-02-17 16:07:32 -0600 |
commit | e8f365173e37780bc769530f21a4c23818cd6379 (patch) | |
tree | 21148d06d650a0680c5ad9dfeb5a35bb4b3cca4a /kpdf/ui | |
parent | 39a64ad5e74cbffcaaca37dac6df6a833748a808 (diff) | |
download | tdegraphics-e8f365173e37780bc769530f21a4c23818cd6379.tar.gz tdegraphics-e8f365173e37780bc769530f21a4c23818cd6379.zip |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'kpdf/ui')
-rw-r--r-- | kpdf/ui/minibar.h | 2 | ||||
-rw-r--r-- | kpdf/ui/pageview.h | 2 | ||||
-rw-r--r-- | kpdf/ui/presentationwidget.h | 2 | ||||
-rw-r--r-- | kpdf/ui/searchwidget.h | 2 | ||||
-rw-r--r-- | kpdf/ui/thumbnaillist.h | 2 | ||||
-rw-r--r-- | kpdf/ui/toc.h | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/kpdf/ui/minibar.h b/kpdf/ui/minibar.h index f9857ec7..2d4ee4bb 100644 --- a/kpdf/ui/minibar.h +++ b/kpdf/ui/minibar.h @@ -25,7 +25,7 @@ class ProgressWidget; class MiniBar : public TQFrame, public DocumentObserver { Q_OBJECT - TQ_OBJECT + public: MiniBar( TQWidget *parent, KPDFDocument * document ); ~MiniBar(); diff --git a/kpdf/ui/pageview.h b/kpdf/ui/pageview.h index cd3425f9..76c9607c 100644 --- a/kpdf/ui/pageview.h +++ b/kpdf/ui/pageview.h @@ -39,7 +39,7 @@ class PageViewTip; class PageView : public TQScrollView, public DocumentObserver { Q_OBJECT - TQ_OBJECT + friend class PageViewTip; diff --git a/kpdf/ui/presentationwidget.h b/kpdf/ui/presentationwidget.h index 000bfeaa..413f4258 100644 --- a/kpdf/ui/presentationwidget.h +++ b/kpdf/ui/presentationwidget.h @@ -35,7 +35,7 @@ class PresentationFrame; class PresentationWidget : public TQDialog, public DocumentObserver { Q_OBJECT - TQ_OBJECT + public: PresentationWidget( TQWidget * parent, KPDFDocument * doc ); ~PresentationWidget(); diff --git a/kpdf/ui/searchwidget.h b/kpdf/ui/searchwidget.h index c2d2d1c1..b0be5dc9 100644 --- a/kpdf/ui/searchwidget.h +++ b/kpdf/ui/searchwidget.h @@ -30,7 +30,7 @@ class m_inputDelayTimer; class SearchWidget : public KToolBar { Q_OBJECT - TQ_OBJECT + public: SearchWidget( TQWidget *parent, KPDFDocument *document ); void clearText(); diff --git a/kpdf/ui/thumbnaillist.h b/kpdf/ui/thumbnaillist.h index fb128045..5365dff0 100644 --- a/kpdf/ui/thumbnaillist.h +++ b/kpdf/ui/thumbnaillist.h @@ -30,7 +30,7 @@ class ThumbnailWidget; class ThumbnailList : public TQScrollView, public DocumentObserver { Q_OBJECT - TQ_OBJECT + public: ThumbnailList(TQWidget *parent, KPDFDocument *document); ~ThumbnailList(); diff --git a/kpdf/ui/toc.h b/kpdf/ui/toc.h index eaccc3d9..6159bfd9 100644 --- a/kpdf/ui/toc.h +++ b/kpdf/ui/toc.h @@ -20,7 +20,7 @@ class KPDFDocument; class TOC : public KListView, public DocumentObserver { Q_OBJECT - TQ_OBJECT + public: TOC(TQWidget *parent, KPDFDocument *document); ~TOC(); |