ossp-pkg/as/as-gui/as_gui.cpp 1.38 -> 1.39
--- as_gui.cpp 2003/01/31 18:48:57 1.38
+++ as_gui.cpp 2003/02/04 19:30:31 1.39
@@ -70,11 +70,11 @@
// Postsetup manipulations
m_pMaintable->setDirty(false);
if (!kszName)
- setName(trUtf8("ASGuiapp"));
- resize(m_pPrefs->getNumber(TITRAQ_PREFFRAMEWIDTH, TITRAQ_DEFFRAMEWIDTH),
+ this->setName(trUtf8("ASGuiapp"));
+ this->resize(m_pPrefs->getNumber(TITRAQ_PREFFRAMEWIDTH, TITRAQ_DEFFRAMEWIDTH),
m_pPrefs->getNumber(TITRAQ_PREFFRAMEHEIGHT, TITRAQ_DEFFRAMEHEIGHT));
connect(qApp, SIGNAL(aboutToQuit()), this, SLOT(savePrefs()));
- setCaption("AS Accounting System");
+ this->setCaption(QString(TITRAQ_APPTITLE) + ' ' + asgui_version.v_short);
// Rehydrate main window layout and doc positions
QString Laystring = m_pPrefs->getString(TITRAQ_PREFFRAMELAY, NULL); // FIXME: Handle first case better
|
|