Title: [89703] trunk/Source/WebCore
- Revision
- 89703
- Author
- [email protected]
- Date
- 2011-06-24 13:54:58 -0700 (Fri, 24 Jun 2011)
Log Message
2011-06-24 Alexis Menard <[email protected]>
Unreviewed build fix.
Build fix on Linux when using the GStreamer backend.
No new tests, just a build fix.
* platform/graphics/gstreamer/PlatformVideoWindowQt.cpp:
(FullScreenVideoWindow::keyPressEvent):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (89702 => 89703)
--- trunk/Source/WebCore/ChangeLog 2011-06-24 20:54:23 UTC (rev 89702)
+++ trunk/Source/WebCore/ChangeLog 2011-06-24 20:54:58 UTC (rev 89703)
@@ -1,3 +1,14 @@
+2011-06-24 Alexis Menard <[email protected]>
+
+ Unreviewed build fix.
+
+ Build fix on Linux when using the GStreamer backend.
+
+ No new tests, just a build fix.
+
+ * platform/graphics/gstreamer/PlatformVideoWindowQt.cpp:
+ (FullScreenVideoWindow::keyPressEvent):
+
2011-06-24 Nat Duca <[email protected]>
Unreviewed, rolling out r89694.
Modified: trunk/Source/WebCore/platform/graphics/gstreamer/PlatformVideoWindowQt.cpp (89702 => 89703)
--- trunk/Source/WebCore/platform/graphics/gstreamer/PlatformVideoWindowQt.cpp 2011-06-24 20:54:23 UTC (rev 89702)
+++ trunk/Source/WebCore/platform/graphics/gstreamer/PlatformVideoWindowQt.cpp 2011-06-24 20:54:58 UTC (rev 89703)
@@ -61,9 +61,9 @@
{
if (m_mediaElement && ev->key() == Qt::Key_Space) {
if (!m_mediaElement->paused())
- m_mediaElement->pause(true);
+ m_mediaElement->pause();
else
- m_mediaElement->play(true);
+ m_mediaElement->play();
} else if (ev->key() == Qt::Key_Escape)
emit closed();
QWidget::keyPressEvent(ev);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes