From 142e6b73cacf67e7886ea896e2a8a5040a0e92ba Mon Sep 17 00:00:00 2001 From: Jekyll Wu Date: Mon, 7 Nov 2011 17:28:58 +0800 Subject: [PATCH] Normalize signal/slot --- src/Session.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Session.cpp b/src/Session.cpp index 6dfd60823..e73109fba 100644 --- a/src/Session.cpp +++ b/src/Session.cpp @@ -143,8 +143,8 @@ Session::Session(QObject* parent) : SLOT(updateFlowControlState(bool)) ); connect( _emulation, SIGNAL(primaryScreenInUse(bool)) , this, SLOT(onPrimaryScreenInUse(bool)) ); - connect( _emulation, SIGNAL(selectedText(const QString &)) , this, - SLOT(onSelectedText(const QString &)) ); + connect( _emulation, SIGNAL(selectedText(QString)) , this, + SLOT(onSelectedText(QString)) ); //create new teletype for I/O with shell process openTeletype(-1);