summaryrefslogtreecommitdiffstats
path: root/kexi/formeditor/factories
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2012-10-31 10:46:45 -0500
committerDarrell Anderson <humanreadable@yahoo.com>2012-10-31 10:46:45 -0500
commitaa0e597d69c5fee77817b37b89407137893b3baf (patch)
tree422e2369183d90bf9e03cabad1eacd1e1d2ee76c /kexi/formeditor/factories
parentd2b03dad3d0b458ab4146b4e51756e3ce8efe7cc (diff)
downloadkoffice-aa0e597d69c5fee77817b37b89407137893b3baf.tar.gz
koffice-aa0e597d69c5fee77817b37b89407137893b3baf.zip
Fix FTBFS on TQt3
Diffstat (limited to 'kexi/formeditor/factories')
-rw-r--r--kexi/formeditor/factories/stdwidgetfactory.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/kexi/formeditor/factories/stdwidgetfactory.h b/kexi/formeditor/factories/stdwidgetfactory.h
index 087ffdc8..a99bf6a8 100644
--- a/kexi/formeditor/factories/stdwidgetfactory.h
+++ b/kexi/formeditor/factories/stdwidgetfactory.h
@@ -41,14 +41,14 @@ class KFORMEDITOR_EXPORT Line : public TQFrame
{
Q_OBJECT
- TQ_PROPERTY(Qt::Orientation orientation READ orientation WRITE setOrientation)
+ TQ_PROPERTY(Orientation orientation READ orientation WRITE setOrientation)
public:
- Line(Qt::Orientation orient, TQWidget *parent, const char *name);
+ Line(Orientation orient, TQWidget *parent, const char *name);
~Line(){;}
- void setOrientation(Qt::Orientation orient);
- Qt::Orientation orientation() const;
+ void setOrientation(Orientation orient);
+ Orientation orientation() const;
};
//! Factory for all basic widgets, including Spring (not containers)