Called Haiku now are we.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8068 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
mahlzeit
2004-06-19 17:43:06 +00:00
parent 2041038abe
commit 612dd00447
3 changed files with 10 additions and 5 deletions
+3 -3
View File
@@ -1,5 +1,5 @@
resource app_signature "application/x-vnd.OpenBeOS.MidiPlayer";
resource app_signature "application/x-vnd.haiku.MidiPlayer";
resource app_flags B_SINGLE_LAUNCH;
@@ -8,10 +8,10 @@ resource app_version
major = 1,
middle = 0,
minor = 0,
variety = B_APPV_ALPHA,
variety = B_APPV_BETA,
internal = 0,
short_info = "MidiPlayer",
long_info = "OpenBeOS - MidiPlayer"
long_info = "Haiku MIDI Player"
};
resource file_types message
+6 -1
View File
@@ -46,7 +46,12 @@ void MidiPlayerApp::ReadyToRun()
void MidiPlayerApp::AboutRequested()
{
(new BAlert(
NULL, "OpenBeOS MidiPlayer\n\n", "Okay", NULL, NULL,
NULL,
"Haiku MIDI Player\n\n"
"This tiny program\n"
"Knows how to play thousands of\n"
"Cheesy sounding songs",
"Okay", NULL, NULL,
B_WIDTH_AS_USUAL, B_INFO_ALERT))->Go();
}
+1 -1
View File
@@ -25,7 +25,7 @@
#include <Application.h>
#define MIDI_PLAYER_SIGNATURE "application/x-vnd.OpenBeOS.MidiPlayer"
#define MIDI_PLAYER_SIGNATURE "application/x-vnd.haiku.MidiPlayer"
class MidiPlayerWindow;