From 663a5d01b1931b97370ed8feff3ae229a9cc7ea4 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 2 Jan 2021 14:02:44 +0100 Subject: Format all code with clang-format --- src/TextViewLog.hpp | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'src/TextViewLog.hpp') diff --git a/src/TextViewLog.hpp b/src/TextViewLog.hpp index 52c1b2c..9840303 100644 --- a/src/TextViewLog.hpp +++ b/src/TextViewLog.hpp @@ -39,29 +39,29 @@ class Widget; class TextViewLog : public ILog { public: - explicit TextViewLog(Widget& text_view); + explicit TextViewLog(Widget& text_view); - TextViewLog(const TextViewLog&) = delete; - TextViewLog& operator=(const TextViewLog&) = delete; + TextViewLog(const TextViewLog&) = delete; + TextViewLog& operator=(const TextViewLog&) = delete; - TextViewLog(TextViewLog&&) = delete; - TextViewLog& operator=(TextViewLog&&) = delete; + TextViewLog(TextViewLog&&) = delete; + TextViewLog& operator=(TextViewLog&&) = delete; - ~TextViewLog() override = default; + ~TextViewLog() override = default; - void info(const std::string& msg) override; - void error(const std::string& msg) override; - void warning(const std::string& msg) override; + void info(const std::string& msg) override; + void error(const std::string& msg) override; + void warning(const std::string& msg) override; - int min_height() const; + int min_height() const; - const Widget& text_view() const { return _text_view; } - Widget& text_view() { return _text_view; } + const Widget& text_view() const { return _text_view; } + Widget& text_view() { return _text_view; } private: - Glib::RefPtr _error_tag; - Glib::RefPtr _warning_tag; - Widget& _text_view; + Glib::RefPtr _error_tag; + Glib::RefPtr _warning_tag; + Widget& _text_view; }; } // namespace patchage -- cgit v1.2.1