Changeset 62
- Timestamp:
- 02/23/06 20:40:49 (3 years ago)
- Files:
-
- 1 modified
-
trunk/orca/qt/qorca.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/orca/qt/qorca.cpp
r42 r62 844 844 845 845 846 static void destroyNative( OValue* a1 ) 847 { 848 WIDPool::REC* rec = qEnv.pool.record( a1->integer ); 849 if( rec ) 850 { 851 delete rec->widget; 852 } 853 orResultNONE; 854 } 855 856 846 857 #define REF_RF_SAVE a1+1 847 858 #define REF_RF_DIR a1+2 … … 1151 1162 "dialog: native [layout [block!]]\n" 1152 1163 "widget: native [layout [block!]]\n" 1164 "destroy: native [wid [integer!]]\n" 1153 1165 "request-file: native [title [string!] /save /dir /init path]\n" 1154 1166 "enable: native [wid [integer!]]\n" … … 1219 1231 orNative( (void*) dialogNative, "dialog" ); 1220 1232 orNative( (void*) widgetNative, "widget" ); 1233 orNative( (void*) destroyNative, "destroy" ); 1221 1234 orNative( (void*) requestFileNative, "request-file" ); 1222 1235 orNative( (void*) enableNative, "enable" );
