Changeset 73
- Timestamp:
- 10/09/08 14:46:15 (3 months ago)
- Files:
-
- trunk/win32/dfl/application.d (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/win32/dfl/application.d
r72 r73 539 539 540 540 // Stopped running. 541 threadExit( Thread.getThis(), EventArgs.empty);541 threadExit(typeid(Application), EventArgs.empty); 542 542 threadFlags = threadFlags & ~(TF.RUNNING | TF.STOP_RUNNING); 543 543 return; … … 777 777 // will be there still when the exception is recovered from. 778 778 // This is very important for some messages, such as socket events. 779 thread1 = Thread.getThis(); 779 thread1 = Thread.getThis(); // Problems with DMD 2.x 780 780 Thread thd; 781 781 version(Tango) … … 902 902 if(threadException.hasHandlers) 903 903 { 904 threadException( Thread.getThis(), new ThreadExceptionEventArgs(e));904 threadException(typeid(Application), new ThreadExceptionEventArgs(e)); 905 905 except = false; 906 906 return; … … 1208 1208 return; 1209 1209 1210 idle( Thread.getThis(), EventArgs.empty);1210 idle(typeid(Application), EventArgs.empty); 1211 1211 WaitMessage(); 1212 1212 }
