Skip to content

Commit

Permalink
fix paranthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
koekeishiya committed Jun 20, 2016
1 parent d0f1fa1 commit dd291c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kwm/axlib/axlib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -217,8 +217,8 @@ std::vector<ax_window *> AXLibGetAllVisibleWindowsOrdered()
ax_window *Window = AXLibFindApplicationWindow(Application, WindowID);
if(Window)
{
if((AXLibIsWindowStandard(Window) ||
(AXLibIsWindowCustom(Window))))
if((AXLibIsWindowStandard(Window)) ||
(AXLibIsWindowCustom(Window)))
{
Windows.push_back(Window);
}
Expand Down

0 comments on commit dd291c0

Please sign in to comment.