diff options
author | Robert Jonsson <spamatica@gmail.com> | 2010-07-12 22:26:30 +0000 |
---|---|---|
committer | Robert Jonsson <spamatica@gmail.com> | 2010-07-12 22:26:30 +0000 |
commit | 0add33dd2fa7ec2442d24f895b0b428b247ee327 (patch) | |
tree | b4f21667c96a2bd22048856cb89584e7d434b3b8 | |
parent | 51c5a94e4ed4c28c65a27c364f721adbe6b1782f (diff) |
missing aboutbox files
-rw-r--r-- | muse/muse/widgets/aboutbox_impl.cpp | 10 | ||||
-rw-r--r-- | muse/muse/widgets/aboutbox_impl.h | 16 |
2 files changed, 26 insertions, 0 deletions
diff --git a/muse/muse/widgets/aboutbox_impl.cpp b/muse/muse/widgets/aboutbox_impl.cpp new file mode 100644 index 00000000..9ea20aad --- /dev/null +++ b/muse/muse/widgets/aboutbox_impl.cpp @@ -0,0 +1,10 @@ +#include <qlabel.h> +#include "aboutbox_impl.h" +#include "config.h" + +AboutBoxImpl::AboutBoxImpl() +{ + QString version(VERSION); + QString svnrevision(SVNVERSION); + versionLabel->setText("Version: " + version + " (svn revision: "+ svnrevision +")"); +} diff --git a/muse/muse/widgets/aboutbox_impl.h b/muse/muse/widgets/aboutbox_impl.h new file mode 100644 index 00000000..4584de9a --- /dev/null +++ b/muse/muse/widgets/aboutbox_impl.h @@ -0,0 +1,16 @@ +#ifndef ABOUTBOXIMPL_H +#define ABOUTBOXIMPL_H + +#include "aboutbox.h" + +class AboutBoxImpl : public AboutBox +{ + Q_OBJECT + +public: + AboutBoxImpl(); + + +}; + +#endif // ABOUTBOXIMPL_H |