aboutsummaryrefslogtreecommitdiff
path: root/include/cru/ui/controls/IFontControl.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/cru/ui/controls/IFontControl.h')
-rw-r--r--include/cru/ui/controls/IFontControl.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/cru/ui/controls/IFontControl.h b/include/cru/ui/controls/IFontControl.h
index 4167de27..33a3f954 100644
--- a/include/cru/ui/controls/IFontControl.h
+++ b/include/cru/ui/controls/IFontControl.h
@@ -1,10 +1,11 @@
#pragma once
#include "../Base.h"
-#include "cru/platform/graphics/Font.h"
+
+#include <cru/platform/graphics/Font.h>
namespace cru::ui::controls {
struct CRU_UI_API IFontControl : virtual Interface {
- virtual std::shared_ptr<platform::graphics::IFont> GetFont() const = 0;
+ virtual std::shared_ptr<platform::graphics::IFont> GetFont() = 0;
virtual void SetFont(std::shared_ptr<platform::graphics::IFont> font) = 0;
};
} // namespace cru::ui::controls