QTfrontend/ui/widget/qpushbuttonwithsound.cpp
changeset 6700 e04da46ee43c
parent 6584 5bb48450b978
child 6930 d187ea93fc4f
--- a/QTfrontend/ui/widget/qpushbuttonwithsound.cpp	Fri Feb 17 17:43:59 2012 +0100
+++ b/QTfrontend/ui/widget/qpushbuttonwithsound.cpp	Fri Feb 17 18:23:36 2012 +0100
@@ -1,26 +1,26 @@
-#include <QMessageBox>
-#include <QDir>
-
-#include "qpushbuttonwithsound.h"
-#include "HWDataManager.h"
-#include "SDLInteraction.h"
-#include "hwform.h"
-#include "gameuiconfig.h"
-
-QPushButtonWithSound::QPushButtonWithSound(QWidget *parent) :
-    QPushButton(parent),
-    isSoundEnabled(true)
-{
-    connect(this, SIGNAL(clicked()), this, SLOT(buttonClicked()));
-}
-
-void QPushButtonWithSound::buttonClicked()
-{
-    if ( !isSoundEnabled || !HWForm::config->isFrontendSoundEnabled())
-        return;
-
-    HWDataManager & dataMgr = HWDataManager::instance();
-
-    if (this->isEnabled())
-        SDLInteraction::instance().playSoundFile(dataMgr.findFileForRead("Sounds/roperelease.ogg"));
-}
+#include <QMessageBox>
+#include <QDir>
+
+#include "qpushbuttonwithsound.h"
+#include "HWDataManager.h"
+#include "SDLInteraction.h"
+#include "hwform.h"
+#include "gameuiconfig.h"
+
+QPushButtonWithSound::QPushButtonWithSound(QWidget *parent) :
+    QPushButton(parent),
+    isSoundEnabled(true)
+{
+    connect(this, SIGNAL(clicked()), this, SLOT(buttonClicked()));
+}
+
+void QPushButtonWithSound::buttonClicked()
+{
+    if ( !isSoundEnabled || !HWForm::config->isFrontendSoundEnabled())
+        return;
+
+    HWDataManager & dataMgr = HWDataManager::instance();
+
+    if (this->isEnabled())
+        SDLInteraction::instance().playSoundFile(dataMgr.findFileForRead("Sounds/roperelease.ogg"));
+}