summaryrefslogtreecommitdiff
path: root/src/group.h
diff options
context:
space:
mode:
authorLouie S <louie@example.com>2024-02-21 20:15:03 -0500
committerLouie S <louie@example.com>2024-02-21 20:15:03 -0500
commit5d1fbe2c839aa33d3855a29efc628e49a17b95f4 (patch)
treee8f85cb80fbd9ed1a76c68d096d69b7577f68f8f /src/group.h
parent2af22ca34e5120ba69cf20911bf802be57cc18dd (diff)
Create entry class
Diffstat (limited to 'src/group.h')
-rw-r--r--src/group.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/group.h b/src/group.h
index 2c450f1..901a29f 100644
--- a/src/group.h
+++ b/src/group.h
@@ -12,7 +12,13 @@ class Group : QVBoxLayout {
QString link;
bool hidden;
- Group(int id, QString name, QString column = "left", QString link = "", bool hidden = false);
+ Group(
+ int id,
+ QString name,
+ QString column = "left",
+ QString link = "",
+ bool hidden = false
+ );
};
#endif