X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/de6185e212ebc37ff11ff70278e3c4f68419b097..322c5ec4c0f5df842ac82c17274dbd2191b021a6:/src/gtk/cursor.cpp diff --git a/src/gtk/cursor.cpp b/src/gtk/cursor.cpp index c975d3cf0d..d02105ec8b 100644 --- a/src/gtk/cursor.cpp +++ b/src/gtk/cursor.cpp @@ -147,8 +147,8 @@ wxCursor::wxCursor(const char bits[], int width, int height, data, mask, fg->GetColor(), bg->GetColor(), hotSpotX, hotSpotY ); - g_object_unref (G_OBJECT (data)); - g_object_unref (G_OBJECT (mask)); + g_object_unref (data); + g_object_unref (mask); } #if wxUSE_IMAGE @@ -299,8 +299,8 @@ wxCursor::wxCursor( const wxImage & image ) hotSpotX, hotSpotY ); - g_object_unref (G_OBJECT (data)); - g_object_unref (G_OBJECT (mask)); + g_object_unref (data); + g_object_unref (mask); delete [] bits; delete [] maskBits; }