[qet] [733] Correction dans la classe QETTabWidget : QElectroTech compile de nouveau avec Qt4.4 |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/qet Archives
]
Revision: 733
Author: xavier
Date: 2009-08-13 19:29:32 +0200 (Thu, 13 Aug 2009)
Log Message:
-----------
Correction dans la classe QETTabWidget : QElectroTech compile de nouveau avec Qt4.4
Modified Paths:
--------------
trunk/sources/qettabwidget.cpp
Modified: trunk/sources/qettabwidget.cpp
===================================================================
--- trunk/sources/qettabwidget.cpp 2009-08-12 16:57:53 UTC (rev 732)
+++ trunk/sources/qettabwidget.cpp 2009-08-13 17:29:32 UTC (rev 733)
@@ -49,7 +49,7 @@
*/
void QETTabWidget::setMovable(bool movable) {
#if QT_VERSION < 0x040500
- tab_bar_ -> setTabsMovable(movable);
+ tab_bar_ -> setMovable(movable);
#else
QTabWidget::setMovable(movable);
#endif
@@ -60,7 +60,7 @@
*/
bool QETTabWidget::isMovable() const {
#if QT_VERSION < 0x040500
- return(tab_bar_ -> tabsMovable());
+ return(tab_bar_ -> isMovable());
#else
return(QTabWidget::isMovable());
#endif