Fixed window title to match Be's version

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6879 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Matthew Wilber 2004-03-03 01:08:35 +00:00
parent a16600d146
commit 3d5b4968bd
2 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ main()
BApplication app("application/x-vnd.obos-tiff-translator");
status_t result;
result = LaunchTranslatorWindow(new TIFFTranslator,
"TIFFTranslator", BRect(0, 0, 225, 175));
"TIFF Settings", BRect(0, 0, 225, 175));
if (result == B_OK) {
app.Run();
return 0;

View File

@ -56,7 +56,7 @@ main()
BApplication app("application/x-vnd.obos-png-translator");
status_t result;
result = LaunchTranslatorWindow(new PNGTranslator,
"PNGTranslator", BRect(0, 0, PNG_VIEW_WIDTH, PNG_VIEW_HEIGHT));
"PNG Settings", BRect(0, 0, PNG_VIEW_WIDTH, PNG_VIEW_HEIGHT));
if (result == B_OK) {
app.Run();
return 0;