summaryrefslogtreecommitdiff
path: root/Demos/WidgetGallery/main.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-06-07 11:50:05 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-06-07 11:50:05 +0200
commit2c70ae041896600f9517a1d9f0bab50bb2dbdcf2 (patch)
tree94e69af1c179be16d0a36070dcbdb9641bc09f63 /Demos/WidgetGallery/main.cpp
parent3ca332af42ef09b494cd4edf245872441ea54905 (diff)
downloadserenity-2c70ae041896600f9517a1d9f0bab50bb2dbdcf2.zip
Demos: Run clang-format on everything.
Diffstat (limited to 'Demos/WidgetGallery/main.cpp')
-rw-r--r--Demos/WidgetGallery/main.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/Demos/WidgetGallery/main.cpp b/Demos/WidgetGallery/main.cpp
index 81f219b51e..a97d08899f 100644
--- a/Demos/WidgetGallery/main.cpp
+++ b/Demos/WidgetGallery/main.cpp
@@ -1,18 +1,18 @@
+#include <LibCore/CTimer.h>
#include <LibGUI/GApplication.h>
-#include <LibGUI/GWindow.h>
-#include <LibGUI/GWidget.h>
-#include <LibGUI/GLabel.h>
-#include <LibGUI/GButton.h>
#include <LibGUI/GBoxLayout.h>
+#include <LibGUI/GButton.h>
#include <LibGUI/GCheckBox.h>
-#include <LibGUI/GRadioButton.h>
-#include <LibGUI/GTextBox.h>
+#include <LibGUI/GGroupBox.h>
+#include <LibGUI/GLabel.h>
#include <LibGUI/GProgressBar.h>
+#include <LibGUI/GRadioButton.h>
#include <LibGUI/GScrollBar.h>
#include <LibGUI/GSlider.h>
#include <LibGUI/GSpinBox.h>
-#include <LibGUI/GGroupBox.h>
-#include <LibCore/CTimer.h>
+#include <LibGUI/GTextBox.h>
+#include <LibGUI/GWidget.h>
+#include <LibGUI/GWindow.h>
int main(int argc, char** argv)
{