Changeset 3526
- Timestamp:
- 05/29/03 00:32:24 (5 years ago)
- Files:
-
- 1 modified
-
trunk/qt-gui/src/keyrequestdlg.cpp (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/qt-gui/src/keyrequestdlg.cpp
r3441 r3526 24 24 #include <qpushbutton.h> 25 25 #include <qlabel.h> 26 #include <qtextcodec.h> 26 27 #include <qtimer.h> 27 28 … … 31 32 #include "sigman.h" 32 33 #include "licq_user.h" 34 #include "usercodec.h" 33 35 34 36 … … 45 47 46 48 ICQUser *u = gUserManager.FetchUser(m_szId, m_nPPID, LOCK_R); 47 setCaption(tr("Licq - Secure Channel with %1").arg(u->GetAlias())); 49 QTextCodec *codec = UserCodec::codecForICQUser(u); 50 setCaption(tr("Licq - Secure Channel with %1").arg(codec->toUnicode(u->GetAlias()))); 48 51 49 52 QBoxLayout *top_lay = new QVBoxLayout(this, 10); … … 127 130 128 131 ICQUser *u = gUserManager.FetchUser(m_nUin, LOCK_R); 129 setCaption(tr("Licq - Secure Channel with %1").arg(u->GetAlias())); 132 QTextCodec *codec = UserCodec::codecForICQUser(u); 133 setCaption(tr("Licq - Secure Channel with %1").arg(codec->toUnicode(u->GetAlias()))); 130 134 131 135 QBoxLayout *top_lay = new QVBoxLayout(this, 10);
