[Ktutorial-commits] SF.net SVN: ktutorial:[379] trunk/ktutorial/ktutorial-library/tests/view/ Windo
Status: Alpha
Brought to you by:
danxuliu
|
From: <dan...@us...> - 2012-08-20 12:30:03
|
Revision: 379
http://ktutorial.svn.sourceforge.net/ktutorial/?rev=379&view=rev
Author: danxuliu
Date: 2012-08-20 12:29:53 +0000 (Mon, 20 Aug 2012)
Log Message:
-----------
Fix Krazy2 doublequote_chars issues.
Modified Paths:
--------------
trunk/ktutorial/ktutorial-library/tests/view/WindowOnTopEnforcerTest.cpp
Modified: trunk/ktutorial/ktutorial-library/tests/view/WindowOnTopEnforcerTest.cpp
===================================================================
--- trunk/ktutorial/ktutorial-library/tests/view/WindowOnTopEnforcerTest.cpp 2012-08-20 12:29:17 UTC (rev 378)
+++ trunk/ktutorial/ktutorial-library/tests/view/WindowOnTopEnforcerTest.cpp 2012-08-20 12:29:53 UTC (rev 379)
@@ -987,7 +987,7 @@
QWidget* expectedParent) const {
QVERIFY(window);
QString message = "\nActual: " + window->parentWidget()->windowTitle() +
- "\nExpected: " + expectedParent->windowTitle() + "\n";
+ "\nExpected: " + expectedParent->windowTitle() + '\n';
QVERIFY2(window->parentWidget() == expectedParent,
message.toStdString().c_str());
QVERIFY(window->isVisible());
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|