From 16b3cd809af48a8288689a9cc16283b328ae430b Mon Sep 17 00:00:00 2001 From: Kent Mein Date: Thu, 1 May 2003 19:52:40 +0000 Subject: [PATCH] dos2unixed relivant stuff in the interndir. I'll wait a couple of days and if no complaints do the other dirs as well. Kent --- intern/ghost/intern/GHOST_SystemCarbon.cpp | 2 +- intern/ghost/intern/GHOST_SystemWin32.cpp | 2 +- intern/python/modules/TextTools/Constants/Sets.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/intern/ghost/intern/GHOST_SystemCarbon.cpp b/intern/ghost/intern/GHOST_SystemCarbon.cpp index 316a0ba73a9..b0d5de19a1a 100644 --- a/intern/ghost/intern/GHOST_SystemCarbon.cpp +++ b/intern/ghost/intern/GHOST_SystemCarbon.cpp @@ -695,7 +695,7 @@ bool GHOST_SystemCarbon::handleMouseDown(EventRef event) GHOST_ASSERT(ghostWindow, "GHOST_SystemCarbon::handleMouseEvent: ghostWindow==0"); if (::TrackGoAway(window, mousePos)) { - // todo: add option-close, because itÕs in the HIG + // todo: add option-close, because itØs in the HIG // if (event.modifiers & optionKey) { // Close the clean documents, others will be confirmed one by one. //} diff --git a/intern/ghost/intern/GHOST_SystemWin32.cpp b/intern/ghost/intern/GHOST_SystemWin32.cpp index ad513372eb5..1e9b03f4620 100644 --- a/intern/ghost/intern/GHOST_SystemWin32.cpp +++ b/intern/ghost/intern/GHOST_SystemWin32.cpp @@ -612,7 +612,7 @@ LRESULT WINAPI GHOST_SystemWin32::s_wndProc(HWND hwnd, UINT msg, WPARAM wParam, * specifies a character code generated by a dead key. A dead key is a key that * generates a character, such as the umlaut (double-dot), that is combined with * another character to form a composite character. For example, the umlaut-O - * character (Ö) is generated by typing the dead key for the umlaut character, and + * character (Ù) is generated by typing the dead key for the umlaut character, and * then typing the O key. */ case WM_SYSDEADCHAR: diff --git a/intern/python/modules/TextTools/Constants/Sets.py b/intern/python/modules/TextTools/Constants/Sets.py index bf260aa3e0c..5915a531b10 100644 --- a/intern/python/modules/TextTools/Constants/Sets.py +++ b/intern/python/modules/TextTools/Constants/Sets.py @@ -10,8 +10,8 @@ import string a2z = 'abcdefghijklmnopqrstuvwxyz' A2Z = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' -umlaute = 'äöüß' -Umlaute = 'ÄÖÜ' +umlaute = '„÷’ž' +Umlaute = 'ýÙ›' alpha = A2Z + a2z german_alpha = A2Z + a2z + umlaute + Umlaute number = '0123456789'