SignalProxy::ExtendedMetaObject cleanup
[quassel.git] / src / common / ircuser.cpp
index 9cb2dfa..fa20698 100644 (file)
@@ -171,6 +171,7 @@ void IrcUser::setLastAwayMessage(const int &lastAwayMessage) {
 }
 
 void IrcUser::setHost(const QString &host) {
+  so_sync(so_arg_cast(host));
   if(!host.isEmpty() && _host != host) {
     _host = host;
     emit hostSet(host);
@@ -300,6 +301,5 @@ void IrcUser::setLastChannelActivity(BufferId buffer, const QDateTime &time) {
 
 void IrcUser::setLastSpokenTo(BufferId buffer, const QDateTime &time) {
   _lastSpokenTo[buffer] = time;
-  qDebug() << "last spoken to" << nick() << buffer << time;
   emit lastSpokenToUpdated(buffer, time);
 }