diff options
| author | 2016-04-28 22:26:20 +0100 | |
|---|---|---|
| committer | 2016-04-28 22:26:20 +0100 | |
| commit | f8c6f401b44bc26f567c9855e59c80ea0ca1c938 (patch) | |
| tree | 165456ab876470d47bf2a93f4af79f0f3ab039e9 | |
| parent | KviSelectros: fix coverity CID 99748 and 99749 (diff) | |
| download | KVIrc-f8c6f401b44bc26f567c9855e59c80ea0ca1c938.tar.gz KVIrc-f8c6f401b44bc26f567c9855e59c80ea0ca1c938.tar.bz2 KVIrc-f8c6f401b44bc26f567c9855e59c80ea0ca1c938.zip | |
Revert "KviSelectros: fix coverity CID 99748 and 99749"
This reverts commit 1819c4110ea66ca83e59fe86470567cd165237d8.
| -rw-r--r-- | src/kvirc/ui/KviSelectors.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kvirc/ui/KviSelectors.cpp b/src/kvirc/ui/KviSelectors.cpp index cdd71d1a3..4373354a6 100644 --- a/src/kvirc/ui/KviSelectors.cpp +++ b/src/kvirc/ui/KviSelectors.cpp @@ -784,7 +784,7 @@ void KviMircTextColorSelector::foreSelected(QAction * pAction) bool bOk=false; int id = pAction->data().toInt(&bOk); if(bOk) - m_uFore = id; + m_uFore = id; setButtonPalette(); } @@ -793,7 +793,7 @@ void KviMircTextColorSelector::backSelected(QAction * pAction) bool bOk=false; int id = pAction->data().toInt(&bOk); if(bOk) - m_uBack = id; + m_uBack = id; setButtonPalette(); } |
