diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-02-15 22:55:57 +0100 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-02-15 22:55:57 +0100 |
commit | 968f06bb452449869532250b5ea722e29cb22991 (patch) | |
tree | e398c3b09ba484e65a90938334e76d34e2ad6fb2 /src/gui/chat.cpp | |
parent | e4d63db096901c1d67d0feb72d77bc5d0c8ba1b3 (diff) | |
download | mana-968f06bb452449869532250b5ea722e29cb22991.tar.gz mana-968f06bb452449869532250b5ea722e29cb22991.tar.bz2 mana-968f06bb452449869532250b5ea722e29cb22991.tar.xz mana-968f06bb452449869532250b5ea722e29cb22991.zip |
Don't make window name translatable
The window name is used in the configuration file, in contrast to the
window title.
Diffstat (limited to 'src/gui/chat.cpp')
-rw-r--r-- | src/gui/chat.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/chat.cpp b/src/gui/chat.cpp index 19d386cf..ba4885fe 100644 --- a/src/gui/chat.cpp +++ b/src/gui/chat.cpp @@ -52,7 +52,7 @@ ChatWindow::ChatWindow(Network * network): Window(""), mNetwork(network), mTmpVisible(false) { - setWindowName(_("Chat")); + setWindowName("Chat"); setResizable(true); setDefaultSize(0, windowContainer->getHeight() - 123, 600, 123); |