diff options
Diffstat (limited to 'xorg-server/hw/xwin/winclipboardwrappers.c')
-rw-r--r-- | xorg-server/hw/xwin/winclipboardwrappers.c | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/xorg-server/hw/xwin/winclipboardwrappers.c b/xorg-server/hw/xwin/winclipboardwrappers.c index 4005bf176..247c8ea43 100644 --- a/xorg-server/hw/xwin/winclipboardwrappers.c +++ b/xorg-server/hw/xwin/winclipboardwrappers.c @@ -59,7 +59,6 @@ DISPATCH_PROC(winProcSetSelectionOwner); * References to external symbols */ -extern Bool g_fUnicodeSupport; extern int g_iNumScreens; extern unsigned int g_uiAuthDataLen; extern char *g_pAuthData; @@ -89,7 +88,8 @@ winProcEstablishConnection(ClientPtr client) static unsigned long s_ulServerGeneration = 0; #ifdef WINDBG - if (s_iCallCount == 0) winDebug ("winProcEstablishConnection - Hello\n"); + if (s_iCallCount == 0) + winDebug("winProcEstablishConnection - Hello\n"); #endif /* Do nothing if clipboard is not enabled */ @@ -327,12 +327,8 @@ winProcSetSelectionOwner(ClientPtr client) } winDebug("winProcSetSelectionOwner - SetClipboardData NULL\n"); - - /* Advertise Unicode if we support it */ - if (g_fUnicodeSupport) - SetClipboardData(CF_UNICODETEXT, NULL); - - /* Always advertise regular text */ + /* Advertise regular text and unicode */ + SetClipboardData(CF_UNICODETEXT, NULL); SetClipboardData(CF_TEXT, NULL); /* Save handle to last owned selection */ |