summaryrefslogtreecommitdiffstats
path: root/src/styles
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-11-06 22:38:16 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-11-06 22:38:16 -0600
commitdeb6f7b222e52035e99fa757e775c01e987a4eb5 (patch)
tree2691debe60a10b05656e286d8c7f5b71fd2535a1 /src/styles
parent79dfe5ba7afa55306b325ddcc6cfbe6dd67cf839 (diff)
downloadtqt3-deb6f7b222e52035e99fa757e775c01e987a4eb5.tar.gz
tqt3-deb6f7b222e52035e99fa757e775c01e987a4eb5.zip
Automated update from Qt3
Diffstat (limited to 'src/styles')
-rw-r--r--src/styles/qcommonstyle.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/styles/qcommonstyle.cpp b/src/styles/qcommonstyle.cpp
index 4406346e..a303a805 100644
--- a/src/styles/qcommonstyle.cpp
+++ b/src/styles/qcommonstyle.cpp
@@ -159,7 +159,7 @@ TQStringList getObjectTypeListForObject(const TQObject* object) {
}
TQStyle::ControlElementFlags getControlElementFlagsForObject(const TQObject* object, TQStringList objectTypeList, const TQStyleOption& opt, bool populateReliantFields) {
- TQStyle::ControlElementFlags cef = (TQStyle::ControlElementFlags)0;
+ TQStyle::ControlElementFlags cef = TQStyle::CEF_None;
if (object) {
if (objectTypeList.contains("TQPushButton")) {
@@ -405,6 +405,7 @@ TQStyleControlElementData populateControlElementDataFromWidget(const TQWidget* w
ceData.totalSteps = pb->totalSteps();
ceData.progressText = pb->progressString();
ceData.percentageVisible = pb->percentageVisible();
+ ceData.orientation = pb->orientation();
}
}
if (ceData.widgetObjectTypes.contains("TQHeader")) {