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");
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.
//}

@ -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:

@ -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'