Merge pull request #71 from f2404/70_assert

Avoid including source files names into the library binary
This commit is contained in:
Petr Vanek
2016-05-25 09:13:53 +02:00
6 changed files with 15 additions and 21 deletions
+1 -2
View File
@@ -26,7 +26,6 @@
#include "Session.h"
// Standard
#include <assert.h>
#include <stdlib.h>
// Qt
@@ -348,7 +347,7 @@ void Session::setUserTitle( int what, const QString & caption )
if (what == 11) {
QString colorString = caption.section(';',0,0);
qDebug() << __FILE__ << __LINE__ << ": setting background colour to " << colorString;
//qDebug() << __FILE__ << __LINE__ << ": setting background colour to " << colorString;
QColor backColor = QColor(colorString);
if (backColor.isValid()) { // change color via \033]11;Color\007
if (backColor != _modifiedBackground) {