forked from AuroraMiddleware/gtk
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:
parent
eb831590cd
commit
43c9a702c7
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user