* Fixed strange indentation.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36645 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2010-05-06 12:40:42 +00:00
parent 3eefb8522f
commit 95b4f29071
+9 -9
View File
@@ -1,5 +1,5 @@
/* /*
* Copyright 2003-2006, Haiku. All rights reserved. * Copyright 2003-2010, Haiku. All rights reserved.
* Distributed under the terms of the MIT License. * Distributed under the terms of the MIT License.
* *
* Authors: * Authors:
@@ -44,13 +44,13 @@ void
HApp::AboutRequested() HApp::AboutRequested()
{ {
BAlert* alert = new BAlert(TR("About Sounds"), BAlert* alert = new BAlert(TR("About Sounds"),
TR("Sounds\n" TR("Sounds\n"
" Brought to you by :\n" " Brought to you by :\n"
"\tOliver Ruiz Dorantes\n" "\tOliver Ruiz Dorantes\n"
"\tJérôme DUVAL.\n" "\tJérôme DUVAL.\n"
" Original work from Atsushi Takamatsu.\n" " Original work from Atsushi Takamatsu.\n"
"Copyright ©2003-2006 Haiku"), "Copyright ©2003-2006 Haiku"),
TR("OK")); TR("OK"));
alert->Go(); alert->Go();
} }
@@ -59,7 +59,7 @@ HApp::AboutRequested()
int int
main(int, char**) main()
{ {
HApp app; HApp app;
app.Run(); app.Run();