summaryrefslogtreecommitdiff
path: root/gtk2_ardour/about.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/about.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/about.cc')
-rw-r--r--gtk2_ardour/about.cc16
1 files changed, 8 insertions, 8 deletions
diff --git a/gtk2_ardour/about.cc b/gtk2_ardour/about.cc
index 0954bad44a..d8b0323491 100644
--- a/gtk2_ardour/about.cc
+++ b/gtk2_ardour/about.cc
@@ -1,5 +1,5 @@
/*
- Copyright (C) 2003 Paul Davis
+ Copyright (C) 2003 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
@@ -220,13 +220,13 @@ About::About ()
set_website (X_("http://ardour.org/"));
set_website_label (_("visit http://www.ardour.org/"));
set_version ((string_compose(_("%1\n(built from revision %2)"),
- VERSIONSTRING,
+ VERSIONSTRING,
svn_revision)));
-
+
#ifdef WITH_PAYMENT_OPTIONS
paypal_button.add (paypal_pixmap);
-
+
HBox *payment_box = manage (new HBox);
payment_box->pack_start (paypal_button, true, false);
@@ -247,15 +247,15 @@ About::goto_paypal ()
char *argv[4];
char *docfile = "foo";
int grandchild;
-
+
if (fork() == 0) {
/* child */
if ((grandchild = fork()) == 0) {
-
+
/* grandchild */
-
+
argv[0] = "mozilla";
argv[1] = "-remote";
snprintf (buf, sizeof(buf), "openurl(%s)", docfile);
@@ -270,6 +270,6 @@ About::goto_paypal ()
waitpid (grandchild, &status, 0);
}
- }
+ }
}
#endif