BPicture: Fix archive constructor.
[haiku.git] / src / add-ons / translators / webp / main.cpp
blobab2087e8bfaa4a50d327e643b0b750f74ea48d9a
1 /*
2 * Copyright 2010, Haiku. All rights reserved.
3 * Distributed under the terms of the MIT License.
5 * Authors:
6 * Philippe Houdoin
7 */
10 #include <Application.h>
11 #include <Catalog.h>
13 #include "TranslatorWindow.h"
14 #include "WebPTranslator.h"
17 #undef B_TRANSLATION_CONTEXT
18 #define B_TRANSLATION_CONTEXT "main"
21 int
22 main()
24 BApplication app("application/x-vnd.Haiku-WebPTranslator");
25 if (LaunchTranslatorWindow(new WebPTranslator,
26 B_TRANSLATE("WebP Settings")) != B_OK)
27 return 1;
29 app.Run();
30 return 0;