summaryrefslogtreecommitdiff
path: root/LibGUI/GProgressBar.h
diff options
context:
space:
mode:
Diffstat (limited to 'LibGUI/GProgressBar.h')
-rw-r--r--LibGUI/GProgressBar.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/LibGUI/GProgressBar.h b/LibGUI/GProgressBar.h
index 82e0d07d31..c5ef4d7701 100644
--- a/LibGUI/GProgressBar.h
+++ b/LibGUI/GProgressBar.h
@@ -15,7 +15,7 @@ public:
String caption() const { return m_caption; }
void set_caption(const String& caption) { m_caption = caption; }
- enum Format { Percentage, ValueSlashMax };
+ enum Format { NoText, Percentage, ValueSlashMax };
Format format() const { return m_format; }
void set_format(Format format) { m_format = format; }