summaryrefslogtreecommitdiffstats
path: root/src/gui
diff options
context:
space:
mode:
authorSami Merila <sami.merila@nokia.com>2010-03-22 12:55:40 (GMT)
committerSami Merila <sami.merila@nokia.com>2010-03-22 12:55:40 (GMT)
commit6da8cec6042823da5622d048bb66ca7c40aed9b3 (patch)
tree55308bc567f635acf949a07c133d8575adcbc267 /src/gui
parent019f5999dd5159268f55abdf56310795bfde3375 (diff)
downloadQt-6da8cec6042823da5622d048bb66ca7c40aed9b3.zip
Qt-6da8cec6042823da5622d048bb66ca7c40aed9b3.tar.gz
Qt-6da8cec6042823da5622d048bb66ca7c40aed9b3.tar.bz2
Adding custom pixel metrics requires cleaning and rebuilding of QtGui
This is due that the size of the pixel metrics table is stored in some object file and the file is not updated, even if we increase the table size integer. Removing direct calls from internal methods to member variable data[] removes the need to do whole rebuild when adding values. Relates to task #9247. Task-number: QTBUG-9247 Reviewed-by: Alessandro Portale
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/styles/qs60style_s60.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/styles/qs60style_s60.cpp b/src/gui/styles/qs60style_s60.cpp
index 14782d8..bb862a3 100644
--- a/src/gui/styles/qs60style_s60.cpp
+++ b/src/gui/styles/qs60style_s60.cpp
@@ -1096,7 +1096,7 @@ void QS60StylePrivate::setActiveLayout()
activeLayoutIndex += (!landscape) ? 1 : 0;
}
- m_pmPointer = data[activeLayoutIndex];
+ setCurrentLayout(activeLayoutIndex);
}
Q_GLOBAL_STATIC(QList<QS60StyleAnimation *>, m_animations)