aboutsummaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2015-03-17 17:11:32 +0100
committerPierre Ossman <ossman@cendio.se>2015-03-17 17:18:51 +0100
commitacd195d949a3ab94668fb49e0a5bf6fb395134bd (patch)
tree31ecaafc1dda1fcdbbb330fe57c27ba6f33f08dc /win
parentf7d15000ff8503dbd8e109c631f709fd45f1592e (diff)
downloadtigervnc-acd195d949a3ab94668fb49e0a5bf6fb395134bd.tar.gz
tigervnc-acd195d949a3ab94668fb49e0a5bf6fb395134bd.zip
Remove debug log noise from Windows dialog class
Diffstat (limited to 'win')
-rw-r--r--win/rfb_win32/Dialog.cxx7
1 files changed, 0 insertions, 7 deletions
diff --git a/win/rfb_win32/Dialog.cxx b/win/rfb_win32/Dialog.cxx
index 6b52244d..c6f303c2 100644
--- a/win/rfb_win32/Dialog.cxx
+++ b/win/rfb_win32/Dialog.cxx
@@ -86,21 +86,17 @@ TCHAR* Dialog::getItemString(int id) {
}
void Dialog::setItemChecked(int id, bool state) {
- dlog.debug("bool[%d]=%d", id, (int)state);
SendMessage(GetDlgItem(handle, id), BM_SETCHECK, state ? BST_CHECKED : BST_UNCHECKED, 0);
}
void Dialog::setItemInt(int id, int value) {
- dlog.debug("int[%d]=%d", id, value);
SetDlgItemInt(handle, id, value, TRUE);
}
void Dialog::setItemString(int id, const TCHAR* s) {
- dlog.debug("string[%d]=%s", id, (const char*)CStr(s));
SetDlgItemText(handle, id, s);
}
void Dialog::enableItem(int id, bool state) {
- dlog.debug("enable[%d]=%d", id, (int)state);
EnableWindow(GetDlgItem(handle, id), state);
}
@@ -361,7 +357,6 @@ bool PropSheet::showPropSheet(HWND owner, bool showApply, bool showCtxtHelp, boo
}
void PropSheet::reInitPages() {
- plog.debug("reInitPages %p", handle);
std::list<PropSheetPage*>::iterator pspi;
for (pspi=pages.begin(); pspi!=pages.end(); pspi++) {
if ((*pspi)->handle)
@@ -370,7 +365,6 @@ void PropSheet::reInitPages() {
}
bool PropSheet::commitPages() {
- plog.debug("commitPages %p", handle);
bool result = true;
std::list<PropSheetPage*>::iterator pspi;
for (pspi=pages.begin(); pspi!=pages.end(); pspi++) {
@@ -383,7 +377,6 @@ bool PropSheet::commitPages() {
void PropSheetPage::setChanged(bool changed) {
if (propSheet) {
- plog.debug("setChanged[%p(%p)]=%d", handle, propSheet->handle, (int)changed);
if (changed)
PropSheet_Changed(propSheet->handle, handle);
else