dos2unixed relivant stuff in the interndir.

I'll wait a couple of days and if no complaints do the other dirs as well.

Kent
This commit is contained in:
Kent Mein 2003-05-01 19:52:40 +00:00
parent 19320c020c
commit 16b3cd809a
3 changed files with 4 additions and 4 deletions

@ -695,7 +695,7 @@ bool GHOST_SystemCarbon::handleMouseDown(EventRef event)
GHOST_ASSERT(ghostWindow, "GHOST_SystemCarbon::handleMouseEvent: ghostWindow==0"); GHOST_ASSERT(ghostWindow, "GHOST_SystemCarbon::handleMouseEvent: ghostWindow==0");
if (::TrackGoAway(window, mousePos)) 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) { // if (event.modifiers & optionKey) {
// Close the clean documents, others will be confirmed one by one. // Close the clean documents, others will be confirmed one by one.
//} //}

@ -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 * 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 * 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 * 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. * then typing the O key.
*/ */
case WM_SYSDEADCHAR: case WM_SYSDEADCHAR:

@ -10,8 +10,8 @@ import string
a2z = 'abcdefghijklmnopqrstuvwxyz' a2z = 'abcdefghijklmnopqrstuvwxyz'
A2Z = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' A2Z = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
umlaute = 'äöüß' umlaute = '„÷’ž'
Umlaute = 'ÄÖÜ' Umlaute = 'ýÙ›'
alpha = A2Z + a2z alpha = A2Z + a2z
german_alpha = A2Z + a2z + umlaute + Umlaute german_alpha = A2Z + a2z + umlaute + Umlaute
number = '0123456789' number = '0123456789'