src/messageLog.cc

changeset 789
4b7306f52bb5
parent 739
152b33a6d51b
child 840
d077dd19bf9a
--- a/src/messageLog.cc	Mon Jun 02 14:34:23 2014 +0300
+++ b/src/messageLog.cc	Tue Jun 03 20:28:10 2014 +0300
@@ -38,7 +38,7 @@
 
 // =============================================================================
 //
-MessageManager::Line::Line (String text) :
+MessageManager::Line::Line (QString text) :
 			text (text),
 			alpha (1.0f),
 			expiry (QDateTime::currentDateTime().addSecs (g_expiry)) {}
@@ -71,7 +71,7 @@
 // =============================================================================
 // Add a line to the message manager.
 //
-void MessageManager::addLine (String line)
+void MessageManager::addLine (QString line)
 {
 	// If there's too many entries, pop the excess out
 	while (m_lines.size() >= g_maxMessages)
@@ -118,9 +118,9 @@
 
 // =============================================================================
 //
-void printToLog (const String& msg)
+void printToLog (const QString& msg)
 {
-	for (String& a : msg.split ("\n", String::SkipEmptyParts))
+	for (QString& a : msg.split ("\n", QString::SkipEmptyParts))
 	{
 		if (g_win != null)
 			g_win->addMessage (a);

mercurial