Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/intern
diff options
context:
space:
mode:
authorKent Mein <mein@cs.umn.edu>2003-05-01 23:52:40 +0400
committerKent Mein <mein@cs.umn.edu>2003-05-01 23:52:40 +0400
commit16b3cd809af48a8288689a9cc16283b328ae430b (patch)
treee72d0127a0c0ce4a098c5c3e3ab56061b2b20585 /intern
parent19320c020cb89e45aa9179f5e89a51b8a44a3c16 (diff)
dos2unixed relivant stuff in the interndir.
I'll wait a couple of days and if no complaints do the other dirs as well. Kent
Diffstat (limited to 'intern')
-rw-r--r--intern/ghost/intern/GHOST_SystemCarbon.cpp2
-rw-r--r--intern/ghost/intern/GHOST_SystemWin32.cpp2
-rw-r--r--intern/python/modules/TextTools/Constants/Sets.py4
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'