[commit] r2136 - trunk/SDK/BON/Wizard/Templates/1033
GMESRC Repository Notifications
gme-commit at list.isis.vanderbilt.edu
Thu Jan 10 14:29:52 CST 2013
Author: ksmyth
Date: Thu Jan 10 14:29:52 2013
New Revision: 2136
Log:
Fix compile errors
Modified:
trunk/SDK/BON/Wizard/Templates/1033/RawComponent.cpp
Modified: trunk/SDK/BON/Wizard/Templates/1033/RawComponent.cpp
==============================================================================
--- trunk/SDK/BON/Wizard/Templates/1033/RawComponent.cpp Wed Jan 9 21:27:11 2013 (r2135)
+++ trunk/SDK/BON/Wizard/Templates/1033/RawComponent.cpp Thu Jan 10 14:29:52 2013 (r2136)
@@ -99,13 +99,13 @@
// these two functions are the main
STDMETHODIMP RawComponent::GlobalEvent(globalevent_enum event) {
if(event == GLOBALEVENT_UNDO) {
- AfxMessageBox(_T("Undo));
+ AfxMessageBox(_T("Undo"));
}
return S_OK;
}
STDMETHODIMP RawComponent::ObjectEvent(IMgaObject * obj, unsigned long eventmask, VARIANT v) {
- if((eventmask & OBJEVENT_CREATED) && !(eventmask & OBJEVENT_DESTROYED) {
+ if((eventmask & OBJEVENT_CREATED) && !(eventmask & OBJEVENT_DESTROYED)) {
AfxMessageBox(_T("Object created: ObjID=") + obj->ID);
}
return S_OK;
More information about the gme-commit
mailing list