summaryrefslogtreecommitdiff
path: root/gtk2_ardour/window_proxy.cc
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.cc
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.cc')
-rwxr-xr-xgtk2_ardour/window_proxy.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/gtk2_ardour/window_proxy.cc b/gtk2_ardour/window_proxy.cc
index 5731d3509d..ff525eb392 100755
--- a/gtk2_ardour/window_proxy.cc
+++ b/gtk2_ardour/window_proxy.cc
@@ -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
@@ -39,7 +39,7 @@ WindowProxyBase::WindowProxyBase (string const & name, XMLNode const * node)
if (!node) {
return;
}
-
+
XMLNodeList children = node->children ();
XMLNodeList::const_iterator i = children.begin ();
@@ -48,7 +48,7 @@ WindowProxyBase::WindowProxyBase (string const & name, XMLNode const * node)
if ((*i)->name() == X_("Window") && prop && prop->value() == _name) {
break;
}
-
+
++i;
}
@@ -59,7 +59,7 @@ WindowProxyBase::WindowProxyBase (string const & name, XMLNode const * node)
if ((prop = (*i)->property (X_("visible"))) != 0) {
_visible = string_is_affirmative (prop->value ());
}
-
+
if ((prop = (*i)->property (X_("x-off"))) != 0) {
_x_off = atoi (prop->value().c_str());
}
@@ -116,7 +116,7 @@ WindowProxyBase::get_state () const
/* If the window has been created, get its current state; otherwise use
the state that we started off with.
*/
-
+
Gtk::Window* gtk_window = get_gtk_window ();
if (gtk_window) {
v = gtk_window->is_visible ();