diff options
Diffstat (limited to 'tdecore/tdehw/tdecryptographiccarddevice.cpp')
-rw-r--r-- | tdecore/tdehw/tdecryptographiccarddevice.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tdecore/tdehw/tdecryptographiccarddevice.cpp b/tdecore/tdehw/tdecryptographiccarddevice.cpp index 37aa6cac5..111cbce17 100644 --- a/tdecore/tdehw/tdecryptographiccarddevice.cpp +++ b/tdecore/tdehw/tdecryptographiccarddevice.cpp @@ -539,12 +539,12 @@ void TDECryptographicCardDevice::cardStatusChanged(TQString status, TQString atr if (status == "INSERTED") { m_cardPresent = true; m_cardATR = atr; - emit(cardInserted()); + emit(cardInserted(this)); } else if (status == "REMOVED") { m_cardPresent = false; m_cardATR = atr; - emit(cardRemoved()); + emit(cardRemoved(this)); } else if (status == "PRESENT") { m_cardATR = atr; |