ossp-pkg/as/as-gui/as_generic.cpp 1.3 -> 1.4
--- as_generic.cpp 2002/12/02 13:25:36 1.3
+++ as_generic.cpp 2003/02/04 19:30:31 1.4
@@ -33,12 +33,18 @@
#include "as_generic.h"
+// Version information
+#define _AS_VERSION_CPP_AS_HEADER_
+#include "as_version.cpp"
+#undef _AS_VERSION_CPP_AS_HEADER_
+
// Construct a Prototype object
Prototype::Prototype()
{
// For display of a prototype implementation
- m_pProtomsg = new QMessageBox("OSSP titraq",
+ QString Namever = QString("AS Accounting System") + ' ' + asgui_version.v_short;
+ m_pProtomsg = new QMessageBox(Namever,
QObject::trUtf8("This method is not implemented yet."),
QMessageBox::NoIcon, QMessageBox::Ok | QMessageBox::Default,
QMessageBox::Cancel | QMessageBox::Escape, QMessageBox::NoButton,
|
|