summaryrefslogtreecommitdiff
path: root/gtk2_ardour/nag.cc
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-10-14 16:10:01 +0000
committerDavid Robillard <d@drobilla.net>2009-10-14 16:10:01 +0000
commitbb9cc45cd22af67ac275a5e73accbe14fee664d8 (patch)
treee52977d3eae6ff07b856088041a080a2fa3e5b79 /gtk2_ardour/nag.cc
parent8c4ce1e2ce35571aed5a686671431fdfffae7f8c (diff)
Strip trailing whitespace and fix other whitespace errors (e.g. space/tab mixing). Whitespace changes only.
Vimmers, try let c_space_errors = 1 in your .vimrc to highlight this kind of stuff in red. I don't know the emacs equivalent... git-svn-id: svn://localhost/ardour2/branches/3.0@5773 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/nag.cc')
-rw-r--r--gtk2_ardour/nag.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/gtk2_ardour/nag.cc b/gtk2_ardour/nag.cc
index c8f6c35c17..7ae1b6e809 100644
--- a/gtk2_ardour/nag.cc
+++ b/gtk2_ardour/nag.cc
@@ -40,13 +40,13 @@ its development with either a one-time donation or subscription. Nothing\n\
will happen if you choose not to do so. However Ardour's continuing development\n\
relies on a stable, sustainable income stream. Thanks for using Ardour!"));
}
-
+
button_box.pack_start (donate_button);
button_box.pack_start (subscribe_button);
button_box.pack_start (existing_button);
button_box.pack_start (next_time_button);
button_box.pack_start (never_again_button);
-
+
get_vbox()->set_spacing (12);
get_vbox()->pack_start (message);
get_vbox()->pack_start (button_box);
@@ -100,7 +100,7 @@ NagScreen::maybe_nag (std::string why)
}
maybe_subscribed = is_subscribed (really_subscribed);
-
+
if (really_subscribed) {
return 0;
}
@@ -114,7 +114,7 @@ NagScreen::mark_never_again ()
Glib::ustring path;
path = Glib::build_filename (user_config_directory().to_string(), ".nevernag");
-
+
ofstream nagfile (path.c_str());
}
@@ -124,7 +124,7 @@ NagScreen::mark_subscriber ()
Glib::ustring path;
path = Glib::build_filename (user_config_directory().to_string(), ".askedaboutsub");
-
+
ofstream subsfile (path.c_str());
}
@@ -134,7 +134,7 @@ NagScreen::mark_affirmed_subscriber ()
Glib::ustring path;
path = Glib::build_filename (user_config_directory().to_string(), ".isubscribe");
-
+
ofstream subsfile (path.c_str());
}
@@ -145,7 +145,7 @@ NagScreen::is_subscribed (bool& really)
really = false;
- /* what we'd really like here is a way to query paypal
+ /* what we'd really like here is a way to query paypal
for someone's subscription status. thats a bit complicated
so for now, just see if they ever told us they were
subscribed. we try to trust our users :)