# HG changeset patch # User Santeri Piippo # Date 1371082097 -10800 # Node ID b8c2d4e8c2c103560ea5570b4b063d2e645bf615 # Parent 86a325a6b7c763374246938b5a1582901e18c816 And I forgot to rebrand the actual dialog box... diff -r 86a325a6b7c7 -r b8c2d4e8c2c1 src/dialogs.cpp --- a/src/dialogs.cpp Thu Jun 13 03:05:54 2013 +0300 +++ b/src/dialogs.cpp Thu Jun 13 03:08:17 2013 +0300 @@ -216,11 +216,9 @@ // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // ============================================================================= SetContentsDialog::SetContentsDialog (QWidget* parent, Qt::WindowFlags f) : QDialog (parent, f) { - setWindowTitle (APPNAME ": Set Contents"); - lb_error = new QLabel; lb_errorIcon = new QLabel; - lb_contents = new QLabel ("Set contents:", parent); + lb_contents = new QLabel ("LDraw code:", parent); le_contents = new QLineEdit (parent); le_contents->setWhatsThis ("The LDraw code of this object. The code written " @@ -240,7 +238,6 @@ layout->addWidget (le_contents); layout->addLayout (bottomRow); - setWindowTitle ("Set Contents"); setWindowIcon (getIcon ("set-contents")); }