summaryrefslogtreecommitdiff
path: root/gtk2_ardour/window_proxy.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-06-01 17:00:29 +0000
committerDavid Robillard <d@drobilla.net>2011-06-01 17:00:29 +0000
commited626628b54e67dd9621c08d82a42afaed00c7ac (patch)
treecf621db4c44f07f75a6e6a3fb7f572cd2c3622cd /gtk2_ardour/window_proxy.h
parenta473d630eb165272992e90f8d854b1d66ec0be63 (diff)
Delete trailing whitespace
git-svn-id: svn://localhost/ardour2/branches/3.0@9656 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/window_proxy.h')
-rwxr-xr-xgtk2_ardour/window_proxy.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/gtk2_ardour/window_proxy.h b/gtk2_ardour/window_proxy.h
index 58a67eb391..10ff25ced6 100755
--- a/gtk2_ardour/window_proxy.h
+++ b/gtk2_ardour/window_proxy.h
@@ -1,5 +1,5 @@
/*
- Copyright (C) 2010 Paul Davis
+ Copyright (C) 2010 Paul Davis
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -33,7 +33,7 @@ class XMLNode;
* Subclasses of WindowProxy handle windows that are created in different
* ways.
*/
-
+
class WindowProxyBase
{
public:
@@ -43,7 +43,7 @@ public:
std::string name () const {
return _name;
}
-
+
void maybe_show ();
XMLNode* get_state () const;
void setup ();
@@ -61,11 +61,11 @@ public:
private:
XMLNode* state_node (bool, int, int, int, int) const;
-
+
std::string _name; ///< internal unique name for this window
bool _visible; ///< true if the window should be visible on startup
int _x_off; ///< x position
- int _y_off; ///< y position
+ int _y_off; ///< y position
int _width; ///< width
int _height; ///< height
};
@@ -79,7 +79,7 @@ public:
: WindowProxyBase (name, node)
, _window (0)
{
-
+
}
Gtk::Window* get_gtk_window () const {
@@ -119,7 +119,7 @@ public:
: WindowProxy<T> (name, node)
, _action (action)
{
-
+
}
void show () {