Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 8072


Ignore:
Timestamp:
Mar 14, 2011, 4:05:13 AM (13 years ago)
Author:
rgrieder
Message:

Removed some debugging stuff.
Kevin, I hope this is OK?

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/mac_osx/src/external/ois/mac/MacKeyboard.cpp

    r8060 r8072  
    199199        char macChar;
    200200       
    201         // TODO clean this up
    202201        if (mTextMode == Unicode)
    203202        {
    204203                //get string size
    205204                UInt32 stringsize;
    206                 //status = GetEventParameter( theEvent, 'kuni', typeUnicodeText, NULL, 0, &stringsize, NULL);
    207                 //status = GetEventParameter( theEvent, 'kuni', typeUnicodeText, NULL, sizeof(UniChar)*10, NULL, &text );
    208205                status = GetEventParameter( theEvent, 'kuni', typeUnicodeText, NULL, sizeof(UniChar) * 10, &stringsize, &text );
    209                 std::cout << "String length: " << stringsize << std::endl;
    210                
    211                 //wstring unitext;
    212                 //for (int i=0;i<10;i++) unitext += (wchar_t)text[i];
    213                 //wcout << "Unicode out: " << unitext << endl;
    214206               
    215207                if(stringsize > 0)
Note: See TracChangeset for help on using the changeset viewer.