diff options
Diffstat (limited to 'kommander/editor/pixmapchooser.h')
-rw-r--r-- | kommander/editor/pixmapchooser.h | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/kommander/editor/pixmapchooser.h b/kommander/editor/pixmapchooser.h index fe54942e..48c947a7 100644 --- a/kommander/editor/pixmapchooser.h +++ b/kommander/editor/pixmapchooser.h @@ -1,7 +1,7 @@ /********************************************************************** ** Copyright (C) 2000 Trolltech AS. All rights reserved. ** -** This file is part of Qt Designer. +** This file is part of TQt Designer. ** ** This file may be distributed and/or modified under the terms of the ** GNU General Public License version 2 as published by the Free Software @@ -29,12 +29,13 @@ class FormWindow; class PixmapView : public TQScrollView, - public QFilePreview + public TQFilePreview { Q_OBJECT + TQ_OBJECT public: - PixmapView( TQWidget *parent ); + PixmapView( TQWidget *tqparent ); void setPixmap( const TQPixmap &pix ); void drawContents( TQPainter *p, int, int, int, int ); void previewUrl( const TQUrl &u ); @@ -44,12 +45,13 @@ private: }; -class ImageIconProvider : public QFileIconProvider +class ImageIconProvider : public TQFileIconProvider { Q_OBJECT + TQ_OBJECT public: - ImageIconProvider( TQWidget *parent = 0, const char *name = 0 ); + ImageIconProvider( TQWidget *tqparent = 0, const char *name = 0 ); ~ImageIconProvider(); const TQPixmap *pixmap( const TQFileInfo &fi ); @@ -60,8 +62,8 @@ private: }; -TQPixmap qChoosePixmap( TQWidget *parent, FormWindow *fw = 0, const TQPixmap &old = TQPixmap(), TQString *fn = 0 ); -TQStringList qChoosePixmaps( TQWidget *parent ); +TQPixmap qChoosePixmap( TQWidget *tqparent, FormWindow *fw = 0, const TQPixmap &old = TQPixmap(), TQString *fn = 0 ); +TQStringList qChoosePixmaps( TQWidget *tqparent ); class PixmapChooser |