quartz: Don't use compound text for selections

Explicitly return FALSE in selection_set_compound_text() to
indicate that we don't want to support compound text selections;
this will eliminate the "not implemented" warning for quartz.
This commit is contained in:
Christian Kellner 2012-05-14 21:33:08 +02:00
parent eb831590cd
commit 43c9a702c7

View File

@ -1328,8 +1328,8 @@ selection_set_compound_text (GtkSelectionData *selection_data,
result = TRUE;
}
g_free (tmp);
#elif defined GDK_WINDOWING_WIN32
result = FALSE; /* not needed on Win32 */
#elif defined(GDK_WINDOWING_WIN32) || defined(GDK_WINDOWING_QUARTZ)
result = FALSE; /* not needed on Win32 or Quartz */
#else
g_warning ("%s is not implemented", G_STRFUNC);
result = FALSE;