diff options
| author | 2016-05-02 13:00:39 +0100 | |
|---|---|---|
| committer | 2016-05-03 01:30:47 +0100 | |
| commit | 8786c4d297f34c54f89ae3d20c8fcf6e8674b1b9 (patch) | |
| tree | 649d7c3a1408bf18c46b8ccc458295d87b16cea3 /src/modules/dcc/DccChatWindow.cpp | |
| parent | revert de1632694 (diff) | |
| download | KVIrc-8786c4d297f34c54f89ae3d20c8fcf6e8674b1b9.tar.gz KVIrc-8786c4d297f34c54f89ae3d20c8fcf6e8674b1b9.tar.bz2 KVIrc-8786c4d297f34c54f89ae3d20c8fcf6e8674b1b9.zip | |
modules dcc: minor capitalization fixes
Diffstat (limited to 'src/modules/dcc/DccChatWindow.cpp')
| -rw-r--r-- | src/modules/dcc/DccChatWindow.cpp | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/src/modules/dcc/DccChatWindow.cpp b/src/modules/dcc/DccChatWindow.cpp index 53f4d4894..603e26e79 100644 --- a/src/modules/dcc/DccChatWindow.cpp +++ b/src/modules/dcc/DccChatWindow.cpp @@ -70,13 +70,7 @@ extern DccBroker * g_pDccBroker; //////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -////// ////// WINDOW -////// -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////////////////////////////////// DccChatWindow::DccChatWindow(DccDescriptor * dcc, const char * name) @@ -593,22 +587,16 @@ void DccChatWindow::connected() output(KVI_OUT_DCCMSG, __tr2qs_ctx("Local end is %Q:%Q", "dcc"), &(m_pMarshal->localIp()), &(m_pMarshal->localPort())); #ifdef COMPILE_SSL_SUPPORT - QString tmp = QString("dcc: %1 %2@%3:%4").arg(m_pDescriptor->bIsSSL ? "SChat" : "Chat", m_pDescriptor->szNick, m_pDescriptor->szIp, m_pDescriptor->szPort); + QString tmp = QString("DCC: %1 %2@%3:%4").arg(m_pDescriptor->bIsSSL ? "SChat" : "Chat", m_pDescriptor->szNick, m_pDescriptor->szIp, m_pDescriptor->szPort); #else - QString tmp = QString("dcc: %1 %2@%3:%4").arg("Chat", m_pDescriptor->szNick, m_pDescriptor->szIp, m_pDescriptor->szPort); + QString tmp = QString("DCC: %1 %2@%3:%4").arg("Chat", m_pDescriptor->szNick, m_pDescriptor->szIp, m_pDescriptor->szPort); #endif m_pLabel->setText(tmp); } } //////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -////// ////// THREAD -////// -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////// -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////////////////////////////////// DccChatThread::DccChatThread(KviWindow * wnd, kvi_socket_t fd) |
