summaryrefslogtreecommitdiffstats
path: root/tools/designer/src/components/propertyeditor/previewframe.cpp
diff options
context:
space:
mode:
authorWarwick Allison <warwick.allison@nokia.com>2009-08-14 16:29:13 +1000
committerWarwick Allison <warwick.allison@nokia.com>2009-08-14 16:29:13 +1000
commit0c831b8cf84c72ee8673d1d38f4e93e350dddd5f (patch)
tree84fc3c89d73342ec70d77b2bdf99066f987536b8 /tools/designer/src/components/propertyeditor/previewframe.cpp
parentb98b7d305ffebb700e471bd64a7dee59d947e056 (diff)
parent4b1b93f3f97de70af316052bc38048f52631b9e4 (diff)
Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qt
Diffstat (limited to 'tools/designer/src/components/propertyeditor/previewframe.cpp')
-rw-r--r--tools/designer/src/components/propertyeditor/previewframe.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/tools/designer/src/components/propertyeditor/previewframe.cpp b/tools/designer/src/components/propertyeditor/previewframe.cpp
index 33073e282..996aca0ae 100644
--- a/tools/designer/src/components/propertyeditor/previewframe.cpp
+++ b/tools/designer/src/components/propertyeditor/previewframe.cpp
@@ -34,7 +34,7 @@
** met: http://www.gnu.org/copyleft/gpl.html.
**
** If you are unsure which license is appropriate for your use, please
-** contact the sales department at http://www.qtsoftware.com/contact.
+** contact the sales department at http://qt.nokia.com/contact.
** $QT_END_LICENSE$
**
****************************************************************************/
@@ -42,15 +42,17 @@
#include "previewframe.h"
#include "previewwidget.h"
+#include <QtCore/QCoreApplication>
+#include <QtCore/QDebug>
#include <QtGui/QPainter>
#include <QtGui/QMdiArea>
#include <QtGui/QMdiSubWindow>
#include <QtGui/QPaintEvent>
-#include <qdebug.h>
QT_BEGIN_NAMESPACE
-namespace {
+namespace qdesigner_internal {
+
class PreviewMdiArea: public QMdiArea {
public:
PreviewMdiArea(QWidget *parent = 0) : QMdiArea(parent) {}
@@ -65,13 +67,11 @@ namespace {
QPainter p(paintWidget);
p.fillRect(rect(), paintWidget->palette().color(backgroundRole()).dark());
p.setPen(QPen(Qt::white));
+ //: Palette editor background
p.drawText(0, height() / 2, width(), height(), Qt::AlignHCenter,
- tr("The moose in the noose\nate the goose who was loose."));
+ QCoreApplication::translate("qdesigner_internal::PreviewMdiArea", "The moose in the noose\nate the goose who was loose."));
return true;
}
-}
-
-namespace qdesigner_internal {
PreviewFrame::PreviewFrame(QWidget *parent) :
QFrame(parent),