X-Git-Url: http://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fguicast%2Fbcwindow.C;h=6992bc9b3d10abdece45babb01ae6e76c4608ab6;hb=296147f865b3572c7e2ecdb47a5d827956221188;hp=23f7f71cc70b63082324fce936fc195789d25e43;hpb=30bdb85eb33a8ee7ba675038a86c6be59c43d7bd;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.1/guicast/bcwindow.C b/cinelerra-5.1/guicast/bcwindow.C index 23f7f71c..6992bc9b 100644 --- a/cinelerra-5.1/guicast/bcwindow.C +++ b/cinelerra-5.1/guicast/bcwindow.C @@ -28,39 +28,17 @@ 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) + 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) { - 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); }