summaryrefslogtreecommitdiffstats
path: root/src/styles/qmotifstyle.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2012-08-07 01:31:43 -0500
committerTimothy Pearson <[email protected]>2012-08-07 01:31:43 -0500
commit58451e41d9ecfb405f5dd2718444ac78e8d51c8b (patch)
tree1b52d26a8b3ffe81516df83896285ebfa843d849 /src/styles/qmotifstyle.cpp
parent0008bc5bcd95694b38b0d0322aac2ea6fdb21298 (diff)
downloadqt3-58451e41d9ecfb405f5dd2718444ac78e8d51c8b.tar.gz
qt3-58451e41d9ecfb405f5dd2718444ac78e8d51c8b.zip
Extend TQStyle API further and bump Qt version number
Diffstat (limited to 'src/styles/qmotifstyle.cpp')
-rw-r--r--src/styles/qmotifstyle.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/styles/qmotifstyle.cpp b/src/styles/qmotifstyle.cpp
index 1fc7bd0..4c6a0c8 100644
--- a/src/styles/qmotifstyle.cpp
+++ b/src/styles/qmotifstyle.cpp
@@ -171,9 +171,9 @@ void QMotifStyle::polish( QPalette& pal )
\internal
Keep QStyle::polish() visible.
*/
-void QMotifStyle::polish( QWidget* w )
+void QMotifStyle::polish( QStyleControlElementData ceData, ControlElementFlags elementFlags, void *ptr )
{
- QStyle::polish(w);
+ QStyle::polish(ceData, elementFlags, ptr);
}
/*!
@@ -181,9 +181,9 @@ void QMotifStyle::polish( QWidget* w )
\internal
Keep QStyle::polish() visible.
*/
-void QMotifStyle::polish( QApplication* a )
+void QMotifStyle::applicationPolish( QStyleControlElementData ceData, ControlElementFlags elementFlags, void *ptr )
{
- QStyle::polish(a);
+ QStyle::applicationPolish(ceData, elementFlags, ptr);
}
static void rot(QPointArray& a, int n)