diff options
| author | 2011-01-01 23:36:56 +0000 | |
|---|---|---|
| committer | 2011-01-01 23:36:56 +0000 | |
| commit | f7f64c33bd3025012d7cbf071f472d90fc27be31 (patch) | |
| tree | f41f47e14dcd951f6826f561263dd59b3fc561a2 /src/modules/dcc/DccVideoWindow.cpp | |
| parent | Fix a compilation error under windows (diff) | |
| download | KVIrc-f7f64c33bd3025012d7cbf071f472d90fc27be31.tar.gz KVIrc-f7f64c33bd3025012d7cbf071f472d90fc27be31.tar.bz2 KVIrc-f7f64c33bd3025012d7cbf071f472d90fc27be31.zip | |
Fix an issue related to KviError::Code in dcc marshal
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5286 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/dcc/DccVideoWindow.cpp')
| -rw-r--r-- | src/modules/dcc/DccVideoWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/dcc/DccVideoWindow.cpp b/src/modules/dcc/DccVideoWindow.cpp index f9464158f..75989cdd6 100644 --- a/src/modules/dcc/DccVideoWindow.cpp +++ b/src/modules/dcc/DccVideoWindow.cpp @@ -495,7 +495,7 @@ DccVideoWindow::DccVideoWindow(KviMainWindow *pFrm,DccDescriptor * dcc,const cha m_Timer.start(FRAME_DURATION); m_pMarshal = new DccMarshal(this); - connect(m_pMarshal,SIGNAL(error(int)),this,SLOT(handleMarshalError(int))); + connect(m_pMarshal,SIGNAL(error(KviError::Code)),this,SLOT(handleMarshalError(KviError::Code))); connect(m_pMarshal,SIGNAL(connected()),this,SLOT(connected())); connect(m_pMarshal,SIGNAL(inProgress()),this,SLOT(connectionInProgress())); |
