Fixed initialisation of tf in file_open(). Without setting the memory to 0,
[cinelerra_cv/mob.git] / plugins / burn / burnwindow.C
blob3d1d0475eb696fa82a052c8c922d04ffff952679
1 #include "bcdisplayinfo.h"
2 #include "burnwindow.h"
3 #include "language.h"
8 PLUGIN_THREAD_OBJECT(BurnMain, BurnThread, BurnWindow)
15 BurnWindow::BurnWindow(BurnMain *client, int x, int y)
16  : BC_Window(client->gui_string, 
17         x,
18         y,
19         300, 
20         170, 
21         300, 
22         170, 
23         0, 
24         0,
25         1)
26
27         this->client = client; 
30 BurnWindow::~BurnWindow()
34 int BurnWindow::create_objects()
36         int x = 10, y = 10;
37         add_subwindow(new BC_Title(x, y, 
38                 _("BurningTV from EffectTV\n"
39                 "Copyright (C) 2001 FUKUCHI Kentarou")
40         ));
42         show_window();
43         flush();
44         return 0;
47 WINDOW_CLOSE_EVENT(BurnWindow)