summaryrefslogtreecommitdiffstats
path: root/webkit
diff options
context:
space:
mode:
authorerg@chromium.org <erg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-02-16 23:26:21 +0000
committererg@chromium.org <erg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-02-16 23:26:21 +0000
commitbd45d53ba1dae53087b338e0124064dff55f9c42 (patch)
treee720c09c8d353fff71beb10cd453a53c0b947604 /webkit
parent89cb4b8bd720933232f272d2f9705c484599f972 (diff)
downloadchromium_src-bd45d53ba1dae53087b338e0124064dff55f9c42.zip
chromium_src-bd45d53ba1dae53087b338e0124064dff55f9c42.tar.gz
chromium_src-bd45d53ba1dae53087b338e0124064dff55f9c42.tar.bz2
GTK: Remove calls that no longer exist and just call the base unref.
BUG=79722 Review URL: http://codereview.chromium.org/9420023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@122389 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r--webkit/glue/webcursor_gtk.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/webkit/glue/webcursor_gtk.cc b/webkit/glue/webcursor_gtk.cc
index ce23ea8..b9fff01 100644
--- a/webkit/glue/webcursor_gtk.cc
+++ b/webkit/glue/webcursor_gtk.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -182,10 +182,10 @@ GdkCursor* WebCursor::GetCustomCursor() {
hotspot_.x(),
hotspot_.y());
- gdk_pixbuf_unref(pixbuf);
+ g_object_unref(pixbuf);
if (unref_)
- gdk_cursor_unref(unref_);
+ g_object_unref(unref_);
unref_ = cursor;
return cursor;
}