[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.22-985-g3c00f00
robert at webkit.org
robert at webkit.org
Wed Mar 17 18:31:32 UTC 2010
The following commit has been merged in the webkit-1.1 branch:
commit 1b203b5057e7f2040fb9c63718e09e7142bac71b
Author: robert at webkit.org <robert at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Wed Mar 10 19:26:42 2010 +0000
2010-03-10 Robert Hogan <robert at webkit.org>
Reviewed by Holger Freyther.
QtLauncher: Fix typo in conditional statement in
WebViewGraphicsBased::setFrameRateMeasurementEnabled.
'=' should be '=='!
https://bugs.webkit.org/show_bug.cgi?id=35877
* QtLauncher/webview.cpp:
(WebViewGraphicsBased::setFrameRateMeasurementEnabled):
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@55791 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index d352274..0ba7204 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,17 @@
+2010-03-10 Robert Hogan <robert at webkit.org>
+
+ Reviewed by Holger Freyther.
+
+ QtLauncher: Fix typo in conditional statement in
+ WebViewGraphicsBased::setFrameRateMeasurementEnabled.
+
+ '=' should be '=='!
+
+ https://bugs.webkit.org/show_bug.cgi?id=35877
+
+ * QtLauncher/webview.cpp:
+ (WebViewGraphicsBased::setFrameRateMeasurementEnabled):
+
2010-03-10 Chris Jerdonek <cjerdonek at webkit.org>
Reviewed by Shinichiro Hamaji.
diff --git a/WebKitTools/QtLauncher/webview.cpp b/WebKitTools/QtLauncher/webview.cpp
index 9252c89..ba1c9b8 100644
--- a/WebKitTools/QtLauncher/webview.cpp
+++ b/WebKitTools/QtLauncher/webview.cpp
@@ -87,7 +87,7 @@ void WebViewGraphicsBased::resizeEvent(QResizeEvent* event)
void WebViewGraphicsBased::setFrameRateMeasurementEnabled(bool enabled)
{
- if (m_measureFps = enabled) {
+ if (m_measureFps == enabled) {
m_lastConsultTime = m_startTime = QTime::currentTime();
m_updateTimer->start();
} else
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list