diff options
author | David Robillard <d@drobilla.net> | 2020-11-29 18:24:03 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-11-29 18:24:03 +0100 |
commit | 178d1cbe1dfc9e7b66c36cbb75590e1cee419174 (patch) | |
tree | 4e33ecbff68fc65d9771c2e654411ad9f1aecd86 /src/TextViewLog.cpp | |
parent | 4265b9a78dac2b7f26f505c7b90b0d88494e93c2 (diff) | |
download | patchage-178d1cbe1dfc9e7b66c36cbb75590e1cee419174.tar.gz patchage-178d1cbe1dfc9e7b66c36cbb75590e1cee419174.tar.bz2 patchage-178d1cbe1dfc9e7b66c36cbb75590e1cee419174.zip |
Put everything in a namespace
Diffstat (limited to 'src/TextViewLog.cpp')
-rw-r--r-- | src/TextViewLog.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/TextViewLog.cpp b/src/TextViewLog.cpp index 0e37420..360cae9 100644 --- a/src/TextViewLog.cpp +++ b/src/TextViewLog.cpp @@ -21,6 +21,8 @@ #include <string> +namespace patchage { + TextViewLog::TextViewLog(Widget<Gtk::TextView>& text_view) : _error_tag{Gtk::TextTag::create()} , _warning_tag{Gtk::TextTag::create()} @@ -81,3 +83,5 @@ TextViewLog::min_height() const return line_height + 2 * _text_view->get_pixels_inside_wrap(); } + +} // namespace patchage |