aboutsummaryrefslogtreecommitdiff
path: root/src/qmmpui/uihelper.cpp
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2011-08-02 16:18:24 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2011-08-02 16:18:24 +0000
commitf40087159b9efbc39859e60a8efb3fa0763c6078 (patch)
tree5dc5cdad98ce056deec0080457459cf822353db2 /src/qmmpui/uihelper.cpp
parente94c89ff724da90c161b3ca4034148123dc1db39 (diff)
downloadqmmp-f40087159b9efbc39859e60a8efb3fa0763c6078.tar.gz
qmmp-f40087159b9efbc39859e60a8efb3fa0763c6078.tar.bz2
qmmp-f40087159b9efbc39859e60a8efb3fa0763c6078.zip
updated about dialog
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@2285 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/qmmpui/uihelper.cpp')
-rw-r--r--src/qmmpui/uihelper.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/qmmpui/uihelper.cpp b/src/qmmpui/uihelper.cpp
index a975b15b6..091586b80 100644
--- a/src/qmmpui/uihelper.cpp
+++ b/src/qmmpui/uihelper.cpp
@@ -30,6 +30,7 @@
#include "general.h"
#include "generalfactory.h"
#include "jumptotrackdialog_p.h"
+#include "aboutdialog_p.h"
#include "uihelper.h"
UiHelper *UiHelper::m_instance = 0;
@@ -209,6 +210,13 @@ void UiHelper::jumpToTrack(QWidget *parent, PlayListModel *model)
m_jumpDialog->raise();
}
+void UiHelper::about(QWidget *parent)
+{
+ AboutDialog *dialog = new AboutDialog(parent);
+ dialog->exec();
+ dialog->deleteLater();
+}
+
void UiHelper::toggleVisibility()
{
emit toggleVisibilityCalled();