summaryrefslogtreecommitdiff
path: root/gtk2_ardour/axis_view.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-07-01 21:11:14 +0200
committerRobin Gareus <robin@gareus.org>2017-07-01 21:19:56 +0200
commitb976bf8986290e8f4812a50e7fdd98b9cbeb4249 (patch)
tree75cffb9761a024943c18e502a3d84e3607954a55 /gtk2_ardour/axis_view.h
parent221902138938a47f32b925f7e37602230e9de538 (diff)
NO-OP whitespace & foratting of header files
Diffstat (limited to 'gtk2_ardour/axis_view.h')
-rw-r--r--gtk2_ardour/axis_view.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/gtk2_ardour/axis_view.h b/gtk2_ardour/axis_view.h
index 77518116a3..ac38db86c0 100644
--- a/gtk2_ardour/axis_view.h
+++ b/gtk2_ardour/axis_view.h
@@ -52,7 +52,7 @@ namespace ARDOUR {
*/
class AxisView : public virtual PBD::ScopedConnectionList, public virtual ARDOUR::SessionHandlePtr, public virtual Selectable
{
- public:
+public:
virtual std::string name() const = 0;
virtual Gdk::Color color() const = 0;
@@ -63,21 +63,21 @@ class AxisView : public virtual PBD::ScopedConnectionList, public virtual ARDOUR
virtual std::string state_id() const = 0;
/* for now, we always return properties in string form.
- */
+ */
std::string gui_property (const std::string& property_name) const;
bool get_gui_property (const std::string& property_name, std::string& value) const;
template <typename T>
- bool get_gui_property (const std::string& property_name, T& value) const
- {
- std::string str = gui_property (property_name);
-
- if (!str.empty ()) {
- return PBD::string_to<T>(str, value);
+ bool get_gui_property (const std::string& property_name, T& value) const
+ {
+ std::string str = gui_property (property_name);
+
+ if (!str.empty ()) {
+ return PBD::string_to<T>(str, value);
+ }
+ return false;
}
- return false;
- }
void set_gui_property (const std::string& property_name, const std::string& value);
@@ -112,7 +112,7 @@ class AxisView : public virtual PBD::ScopedConnectionList, public virtual ARDOUR
*/
static Gdk::Color unique_random_color();
- protected:
+protected:
AxisView ();
virtual ~AxisView();