[commit] r1253 - trunk/GME/GMEActiveBrowser
GMESRC Repository Notifications
gme-commit at list.isis.vanderbilt.edu
Wed Apr 6 16:00:20 CDT 2011
Author: ksmyth
Date: Wed Apr 6 16:00:19 2011
New Revision: 1253
Log:
Fix Debug build
Modified:
trunk/GME/GMEActiveBrowser/AggregateContextMenu.cpp
trunk/GME/GMEActiveBrowser/MgaMap.cpp
Modified: trunk/GME/GMEActiveBrowser/AggregateContextMenu.cpp
==============================================================================
--- trunk/GME/GMEActiveBrowser/AggregateContextMenu.cpp Tue Apr 5 17:33:01 2011 (r1252)
+++ trunk/GME/GMEActiveBrowser/AggregateContextMenu.cpp Wed Apr 6 16:00:19 2011 (r1253)
@@ -63,7 +63,7 @@
UINT nItemID=pPopup->TrackPopupMenu(TPM_LEFTALIGN | TPM_RIGHTBUTTON |TPM_NONOTIFY|TPM_RETURNCMD, point.x, point.y,
m_pParent);
- TRACE1(_T("Selected menu item ID: %d\n"),nItemID);
+ TRACE1("Selected menu item ID: %d\n",nItemID);
return DispatchCommand(nItemID);
}
Modified: trunk/GME/GMEActiveBrowser/MgaMap.cpp
==============================================================================
--- trunk/GME/GMEActiveBrowser/MgaMap.cpp Tue Apr 5 17:33:01 2011 (r1252)
+++ trunk/GME/GMEActiveBrowser/MgaMap.cpp Wed Apr 6 16:00:19 2011 (r1253)
@@ -254,7 +254,7 @@
{
m_MapItem2Object.GetNextAssoc(pos,hItem,pUnknown);
CString strOut;
- strOut.Format(" %x | %x\n",hItem, pUnknown);
+ strOut.Format(_T(" %x | %x\n"),hItem, pUnknown);
dc<<strOut;
}
dc<<"\n";
@@ -271,7 +271,7 @@
{
m_MapObject2Item.GetNextAssoc(pos,pUnknown,pMgaObjectProxyMapItem);
CString strOut;
- strOut.Format(" %x | %x | %d\n", pUnknown, pMgaObjectProxyMapItem->m_hTreeItem,pMgaObjectProxyMapItem->m_TypeInfo);
+ strOut.Format(_T(" %x | %x | %d\n"), pUnknown, pMgaObjectProxyMapItem->m_hTreeItem,pMgaObjectProxyMapItem->m_TypeInfo);
dc<<strOut;
}
dc<<"\n";
More information about the gme-commit
mailing list