1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 04:07:35 +00:00

Meta+Demos: Make clang-format-10 clean

This commit is contained in:
Ben Wiederhake 2020-09-18 09:49:51 +02:00 committed by Andreas Kling
parent 9ef1461ec9
commit b3909ac0dd

View file

@ -25,15 +25,15 @@
*/ */
#include <LibCore/ElapsedTimer.h> #include <LibCore/ElapsedTimer.h>
#include <LibGfx/Bitmap.h>
#include <LibGUI/Action.h> #include <LibGUI/Action.h>
#include <LibGUI/Application.h> #include <LibGUI/Application.h>
#include <LibGUI/Event.h> #include <LibGUI/Event.h>
#include <LibGUI/Painter.h> #include <LibGUI/Painter.h>
#include <LibGUI/Widget.h> #include <LibGUI/Widget.h>
#include <LibGUI/Window.h> #include <LibGUI/Window.h>
#include <time.h> #include <LibGfx/Bitmap.h>
#include <stdio.h> #include <stdio.h>
#include <time.h>
#define WIDTH 64 #define WIDTH 64
#define HEIGHT 48 #define HEIGHT 48
@ -126,8 +126,7 @@ void Screensaver::draw()
orientations[rand() % (sizeof(orientations) / sizeof(orientations[0]))], orientations[rand() % (sizeof(orientations) / sizeof(orientations[0]))],
m_bitmap->rect(), m_bitmap->rect(),
colors[start_color_index], colors[start_color_index],
colors[end_color_index] colors[end_color_index]);
);
update(); update();
} }