summaryrefslogtreecommitdiff
path: root/Source/WebCore/platform/qt/SoundQt.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/platform/qt/SoundQt.cpp')
-rw-r--r--Source/WebCore/platform/qt/SoundQt.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/Source/WebCore/platform/qt/SoundQt.cpp b/Source/WebCore/platform/qt/SoundQt.cpp
index bf9e1426a..7e3c99119 100644
--- a/Source/WebCore/platform/qt/SoundQt.cpp
+++ b/Source/WebCore/platform/qt/SoundQt.cpp
@@ -28,13 +28,16 @@
#include "config.h"
#include "Sound.h"
-#include <QApplication>
+#include <NotImplemented.h>
namespace WebCore {
void systemBeep()
{
- QApplication::beep();
+ // FIXME: Not implemented in Qt 5 right now. The implementation in QApplication:beep()
+ // is empty. If anyone is going to bother implementing this via QPlatformNativeInterface, then
+ // we could use that here.
+ notImplemented();
}
}