X-Git-Url: http://git.cinelerra-gg.org/git/?p=goodguy%2Fhistory.git;a=blobdiff_plain;f=cinelerra-5.1%2Fguicast%2Fbcwindow.C;h=666866864174dbc8b8ffe1daedc35f5c88399f81;hp=23f7f71cc70b63082324fce936fc195789d25e43;hb=7e5a0760f40ff787cc3d93cb7768a901ebe52809;hpb=30bdb85eb33a8ee7ba675038a86c6be59c43d7bd diff --git a/cinelerra-5.1/guicast/bcwindow.C b/cinelerra-5.1/guicast/bcwindow.C index 23f7f71c..66686686 100644 --- a/cinelerra-5.1/guicast/bcwindow.C +++ b/cinelerra-5.1/guicast/bcwindow.C @@ -28,39 +28,16 @@ char BC_Window::default_x11_host[BCTEXTLEN] = ""; BC_Window::BC_Window(const char *title, - int x, - int y, - int w, - int h, - int minw, - int minh, - int allow_resize, - int private_color, - int hide, - int bg_color, - const char *display_name, - int group_it, - int options) - : BC_WindowBase(options) + int x, int y, int w, int h, int minw, int minh, int allow_resize, + int private_color, int hide, int bg_color, const char *display_name, + int group_it) { - create_window(0, - title, - x, - y, - w, - h, - (minw < 0) ? w : minw, - (minh < 0) ? h : minh, - allow_resize, - private_color, - hide, - bg_color, - display_name ? display_name : - default_x11_host[0] ? default_x11_host : - 0, - MAIN_WINDOW, - 0, - group_it); + create_window(0, title, x, y, w, h, + (minw < 0) ? w : minw, (minh < 0) ? h : minh, + allow_resize, private_color, hide, bg_color, + display_name ? display_name : + default_x11_host[0] ? default_x11_host : 0, + MAIN_WINDOW, 0, group_it); }