[GME-commit]
GMESRC/Paradigms/HFSM/interpreter Component.cpp,1.3,1.4
gme-commit at list.isis.vanderbilt.edu
gme-commit at list.isis.vanderbilt.edu
Mon Apr 26 05:29:45 CDT 2004
- Previous message: [GME-commit] GMESRC/GME/Gme PannButton.cpp,1.1,1.2
- Next message: [GME-commit] GMESRC/Tools/AutoLayout DlgAutoLayout.cpp,1.1,1.2
DlgAutoLayout.h,1.1,1.2 GMEGraph.cpp,1.1,1.2 GMEGraph.h,1.1,1.2
RawComponent.cpp,1.1,1.2
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /var/lib/gme/GMESRC/Paradigms/HFSM/interpreter
In directory braindrain:/tmp/cvs-serv4993
Modified Files:
Component.cpp
Log Message:
Finding main app window was faulty. Fixed (BUG #69)
CVS User: volgy
Index: Component.cpp
===================================================================
RCS file: /var/lib/gme/GMESRC/Paradigms/HFSM/interpreter/Component.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Component.cpp 29 Apr 2003 06:07:15 -0000 1.3
--- Component.cpp 26 Apr 2004 09:29:43 -0000 1.4
***************
*** 19,25 ****
CBuilderFolder *fldr = builder.GetRootFolder();
! CString winname = "HFSM - " + fldr->GetName();
! GMEHandle::hwnd = FindWindow(0, winname);
CSequence inp(builder);
--- 19,30 ----
CBuilderFolder *fldr = builder.GetRootFolder();
!
! // Searching for the main window based on its name was not a good idea
! // Especially, if the child windows were maximized (main window's title changes)
! // CString winname = "HFSM - " + fldr->GetName();
! // GMEHandle::hwnd = FindWindow(0, winname);
! GMEHandle::hwnd = AfxGetApp()->GetMainWnd()->GetSafeHwnd();
!
CSequence inp(builder);
- Previous message: [GME-commit] GMESRC/GME/Gme PannButton.cpp,1.1,1.2
- Next message: [GME-commit] GMESRC/Tools/AutoLayout DlgAutoLayout.cpp,1.1,1.2
DlgAutoLayout.h,1.1,1.2 GMEGraph.cpp,1.1,1.2 GMEGraph.h,1.1,1.2
RawComponent.cpp,1.1,1.2
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the GME-commit
mailing list