Thu, 13 Jun 2013 03:08:17 +0300
And I forgot to rebrand the actual dialog box...
src/dialogs.cpp | file | annotate | diff | comparison | revisions |
--- 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")); }