summaryrefslogtreecommitdiffstats
path: root/src/app/dirviewcontroller.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/dirviewcontroller.h')
-rw-r--r--src/app/dirviewcontroller.h23
1 files changed, 12 insertions, 11 deletions
diff --git a/src/app/dirviewcontroller.h b/src/app/dirviewcontroller.h
index 8bd7596..28fcc80 100644
--- a/src/app/dirviewcontroller.h
+++ b/src/app/dirviewcontroller.h
@@ -1,5 +1,5 @@
// vim: set tabstop=4 shiftwidth=4 noexpandtab:
-// kate: indent-mode csands; indent-width 4; replace-tabs-save off; replace-tabs off; replace-trailing-space-save off; space-indent off; tabs-indents on; tab-width 4;
+// kate: indent-mode csands; indent-width 4; tqreplace-tabs-save off; tqreplace-tabs off; tqreplace-trailing-space-save off; space-indent off; tabs-indents on; tab-width 4;
/*
Gwenview - A simple image viewer for KDE
Copyright 2005 Aurelien Gateau
@@ -22,12 +22,12 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#ifndef DIRVIEWCONTROLLER_H
#define DIRVIEWCONTROLLER_H
-// Qt
-#include "qobject.h"
+// TQt
+#include "tqobject.h"
-class QListViewItem;
-class QPoint;
-class QWidget;
+class TQListViewItem;
+class TQPoint;
+class TQWidget;
class KListView;
class KURL;
@@ -37,12 +37,13 @@ class Job;
namespace Gwenview {
-class DirViewController : public QObject {
+class DirViewController : public TQObject {
Q_OBJECT
+ TQ_OBJECT
public:
- DirViewController(QWidget* parent);
+ DirViewController(TQWidget* tqparent);
virtual ~DirViewController();
- QWidget* widget() const;
+ TQWidget* widget() const;
public slots:
void setURL(const KURL&);
@@ -56,8 +57,8 @@ private:
Private* d;
private slots:
- void slotTreeViewSelectionChanged(QListViewItem*);
- void slotTreeViewContextMenu(KListView*, QListViewItem*, const QPoint&);
+ void slotTreeViewSelectionChanged(TQListViewItem*);
+ void slotTreeViewContextMenu(KListView*, TQListViewItem*, const TQPoint&);
void makeDir();
void slotDirMade();