Changeset 6141 for trunk/AWT/AWT_hotkeys.cxx
- Timestamp:
- 14/08/09 16:29:27 (3 years ago)
- Files:
-
- 1 modified
-
trunk/AWT/AWT_hotkeys.cxx (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/AWT/AWT_hotkeys.cxx
r5675 r6141 19 19 using namespace std; 20 20 21 // ----------------------------------------------------- 22 // const char* awt_hotkeys::artifical_hotkey() 23 // ----------------------------------------------------- 24 const char* awt_hotkeys::artifical_hotkey() { 25 if (artifical <= '9') { 26 current[0] = artifical++; 21 const char* awt_hotkeys::artificial_hotkey() { 22 if (artificial <= '9') { 23 current[0] = artificial++; 27 24 } 28 25 else { … … 47 44 } 48 45 49 // -----------------------------------------------------------------------50 // const char* awt_hotkeys::hotkey_internal(const string& label)51 // -----------------------------------------------------------------------52 46 const char* awt_hotkeys::hotkey(const string& label) { 53 47 if (label.length()) { … … 69 63 } 70 64 } 71 return artific al_hotkey();65 return artificial_hotkey(); 72 66 } 73 67
