summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Nichols <andy.nichols@nokia.com>2012-02-17 10:28:43 +0100
committerSamuel Rødal <samuel.rodal@nokia.com>2012-02-20 09:30:25 +0100
commita9d6833693a8fcbb54f575ff3994b216b7b19d84 (patch)
tree111782dbbfcac86860f405809a89a24c9c3c2888
parent5bc65bc92bc1961059c7ecadfe4253db2f488801 (diff)
Call the correct frameFinished method in Surface::sendFrameCallback
After the recent refactoring, the frameFinished method was still called where we should now be calling frameFinishedInternal Change-Id: I6ac5c0467dda6bb7e62976e8da28dc9d19a986c8 Reviewed-by: Samuel Rødal <samuel.rodal@nokia.com>
-rw-r--r--src/compositor/wayland_wrapper/wlsurface.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compositor/wayland_wrapper/wlsurface.cpp b/src/compositor/wayland_wrapper/wlsurface.cpp
index 2d96d6de1..aa2bfb306 100644
--- a/src/compositor/wayland_wrapper/wlsurface.cpp
+++ b/src/compositor/wayland_wrapper/wlsurface.cpp
@@ -235,7 +235,7 @@ Compositor *Surface::compositor() const
void Surface::sendFrameCallback()
{
- frameFinished();
+ frameFinishedInternal();
uint time = Compositor::currentTimeMsecs();
struct wl_resource *frame_callback;