1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 07:08:10 +00:00

LibGUI: Run clang-format on GModel.h to neaten up some formatting

This commit is contained in:
Conrad Pankoff 2020-01-07 22:43:31 +11:00 committed by Andreas Kling
parent 84f0be37f0
commit 0e7cee58c0

View file

@ -1,13 +1,13 @@
#pragma once
#include <AK/String.h>
#include <AK/Badge.h>
#include <AK/Function.h>
#include <AK/HashTable.h>
#include <AK/RefCounted.h>
#include <AK/String.h>
#include <LibDraw/TextAlignment.h>
#include <LibGUI/GModelIndex.h>
#include <LibGUI/GVariant.h>
#include <LibDraw/TextAlignment.h>
class Font;
class GAbstractView;
@ -24,8 +24,11 @@ public:
int preferred_width { 0 };
TextAlignment text_alignment { TextAlignment::CenterLeft };
const Font* font { nullptr };
enum class Sortable { False, True };
Sortable sortable { Sortable::True };
enum class Sortable {
False,
True,
};
Sortable sortable { Sortable::True };
};
enum class Role {