mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 09:51:57 -05:00
Remove some #if 0'd code.
This commit is contained in:
parent
cfd76ade73
commit
7577ee0c67
1 changed files with 0 additions and 7 deletions
|
@ -182,13 +182,6 @@ void WindowManager::handleTitleBarMouseEvent(Window& window, MouseEvent& event)
|
|||
window.setIsBeingDragged(true);
|
||||
return;
|
||||
}
|
||||
#if 0
|
||||
byte r = (((double)rand()) / (double)RAND_MAX) * 255.0;
|
||||
byte g = (((double)rand()) / (double)RAND_MAX) * 255.0;
|
||||
byte b = (((double)rand()) / (double)RAND_MAX) * 255.0;
|
||||
m_activeWindowBorderColor = Color(r, g, b);
|
||||
paintWindowFrame(window);
|
||||
#endif
|
||||
}
|
||||
|
||||
void WindowManager::processMouseEvent(MouseEvent& event)
|
||||
|
|
Loading…
Add table
Reference in a new issue