From af3dbbadf8b7ed1adba1f9a5ced774a09f707efe Mon Sep 17 00:00:00 2001 From: Joshua Fuhs Date: Thu, 12 Jul 2012 13:35:58 -0400 Subject: [PATCH] I really should test before committing. The debug calls didn't work --- src/Bar.ahk | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Bar.ahk b/src/Bar.ahk index 6c9eb0e..d3c3fd8 100644 --- a/src/Bar.ahk +++ b/src/Bar.ahk @@ -38,7 +38,7 @@ Bar_init(m) { ; Create the GUI window wndTitle := "bug.n_BAR_" m GuiN := (m - 1) + 1 - Log_msg_dbg(3, "Bar_init(): Gui, " . GuiN . ": Default") + Log_dbg_msg(3, "Bar_init(): Gui, " . GuiN . ": Default") Gui, %GuiN%: Default IfWinExist, %wndTitle% Gui, Destroy @@ -652,7 +652,7 @@ Bar_updateStatus() { Loop, % Manager_monitorCount { m := A_Index GuiN := (m - 1) + 1 - Log_msg_dbg(3, "Bar_updateStatus(): Gui, " . GuiN . ": Default") + Log_dbg_msg(3, "Bar_updateStatus(): Gui, " . GuiN . ": Default") Gui, %GuiN%: Default If Config_readinBat { Bar_getBatteryStatus(b1, b2) @@ -711,7 +711,7 @@ Bar_updateTitle(debugMsg = "") { i := Config_viewCount + 2 Loop, % Manager_monitorCount { GuiN := (A_Index - 1) + 1 - Log_msg_dbg(3, "Bar_updateTitle(): Gui, " . GuiN . ": Default") + Log_dbg_msg(3, "Bar_updateTitle(): Gui, " . GuiN . ": Default") Gui, %GuiN%: Default GuiControlGet, content, , Bar_#%A_Index%_#%i% If (A_Index = Manager_aMonitor) { @@ -728,7 +728,7 @@ Bar_updateView(m, v) { Local IdsLen, ViewIdsLen GuiN := (m - 1) + 1 - Log_msg_dbg(3, "Bar_updateView(): Gui, " . GuiN . ": Default") + Log_dbg_msg(3, "Bar_updateView(): Gui, " . GuiN . ": Default") Gui, %GuiN%: Default IdsLen := StrLen(Manager_managedWndIds)