From 1416e4eb090fa0e4a1d4a95d484710eeb95ea3c0 Mon Sep 17 00:00:00 2001 From: ketmar Date: Mon, 5 Aug 2013 03:04:57 +0300 Subject: [PATCH] cosmetix --- src/eng_bindings.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/eng_bindings.cpp b/src/eng_bindings.cpp index 7d2abba..dee6da4 100644 --- a/src/eng_bindings.cpp +++ b/src/eng_bindings.cpp @@ -72,8 +72,9 @@ bool EngineBindings::defaultBinding (const QString &cmd, const QString &combo, c return true; } if (cl[0] == "chat-with") { - if (cl.length() < 2) mChat->startChatWith(""); - else { + if (cl.length() < 2) { + mChat->startChatWith(""); + } else { QStringList lst(mChat->findByUniPart(cl[1])); if (lst.size() < 1) mChat->optPrint("can't start chat: nothing's found"); else if (lst.size() > 1) mChat->optPrint("too many unis found!
\n"+lst.join("
\n")); -- 2.11.4.GIT