Fixed initialisation of tf in file_open(). Without setting the memory to 0,
[cinelerra_cv/mob.git] / guicast / bcrelocatablewidget.h
blobee59eaf179c9daf6bbc7c610f7dc7b4a12513c63
1 #ifndef BCRELOCATABLEWIDGET_H
2 #define BCRELOCATABLEWIDGET_H
4 class BC_RelocatableWidget
6 public:
7 BC_RelocatableWidget();
8 virtual int reposition_widget(int x, int y, int w = -1, int h = -1) { return -1; };
9 virtual int get_w() {return -1; };
10 virtual int get_h() {return -1; };
13 #endif