summaryrefslogtreecommitdiff
path: root/src/msvc6/testrunner/DynamicWindow/cdxCDynamicWnd.cpp
diff options
context:
space:
mode:
authorBaptiste Lepilleur <gaiacrtn@free.fr>2002-06-14 10:12:17 +0000
committerBaptiste Lepilleur <gaiacrtn@free.fr>2002-06-14 10:12:17 +0000
commitf39e160fba25476de7d41e2f19d756db7ee76dc7 (patch)
tree6abf2725b94c754023bc8408ad0e53463bc7caed /src/msvc6/testrunner/DynamicWindow/cdxCDynamicWnd.cpp
parent6b57ee7236610cc5ac9e388bb73be1854429a27b (diff)
downloadcppunit-f39e160fba25476de7d41e2f19d756db7ee76dc7.tar.gz
Src/cppunit/TypeInfoHelper.
src/cppunit/TypeInfoHelper.cpp: added work around for bug #565481. gcc 3.0 RTTI name() returns the type prefixed with a number (the length of the type). The work around strip the number. * src/msvc6/testpluginrunner/TestPlugInRunnerApp.cpp: registry key is now set. Allow to save settings. * src/msvc6/testpluginrunner/TestPlugInRunnerDlg.h: * src/msvc6/testpluginrunner/TestPlugInRunnerDlg.cpp: added layout initialization for resizing. * src/msvc6/testpluginrunner/TestPlugRunner.rc: * src/msvc6/testpluginrunner/TestPlugInRunner.dsp: added TestRunner project files. Somehow I can't get cdxCDynamicDialog to compile as a MFC extension. Included all sources files and resources as a very dirt work around. * src/msvc6/testrunner/TestRunnerDlg.h: * src/msvc6/testrunner/TestRunnerDlg.cpp: * src/msvc6/testrunner/TestRunnerModel.h: those classes are no longer exported in the MFC extension. See TestPlugInRunner issue with cdxCDynamicDialog. * include/cppunit/Message.h: * include/cppunit/TestPath.h: * include/cppunit/TestResult.h: * include/cppunit/TestResultCollector.h: * include/cppunit/TestSuite.h: * include/cppunit/TestFactoryRegistry.h: * include/cppunit/XmlElement.h: * include/cppunit/TypeInfoHelper.h: commented out STL template export in DLL. This caused conflicts when instantiting the same template in a user project.
Diffstat (limited to 'src/msvc6/testrunner/DynamicWindow/cdxCDynamicWnd.cpp')
-rw-r--r--src/msvc6/testrunner/DynamicWindow/cdxCDynamicWnd.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/msvc6/testrunner/DynamicWindow/cdxCDynamicWnd.cpp b/src/msvc6/testrunner/DynamicWindow/cdxCDynamicWnd.cpp
index 14de35d..2d37053 100644
--- a/src/msvc6/testrunner/DynamicWindow/cdxCDynamicWnd.cpp
+++ b/src/msvc6/testrunner/DynamicWindow/cdxCDynamicWnd.cpp
@@ -498,10 +498,10 @@ void cdxCDynamicWnd::DoInitWindow(CWnd & rWnd, const CSize & szInitial)
#ifdef _DEBUG
if(!(rWnd.GetStyle() & WS_CLIPCHILDREN) && !(m_nFlags & flSWPCopyBits))
{
- TRACE(_T("***\n"
- "*** cdxCDynamicWnd class note: If your window flickers too much, add the WS_CLIPCHILDREN style to it\n"
- "*** or try to set the flSWPCopyBits flags !!!\n"
- "***\n"));
+ TRACE(_T("***\n")
+ _T("*** cdxCDynamicWnd class note: If your window flickers too much, add the WS_CLIPCHILDREN style to it\n")
+ _T("*** or try to set the flSWPCopyBits flags !!!\n")
+ _T("***\n"));
}
#endif