X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ftable.cpp;h=f3016723e3566078a8ca204d1b5d60d4e0d765ed;hb=73afd124ab87e8bace98db55517a56c797a9b8c7;hp=c0c823822c425e70fb709d721f53853965dce884;hpb=2f70d404230954f0693a62a021b5d2ad1faed8fa;p=libs%2Fgltk.git diff --git a/source/table.cpp b/source/table.cpp index c0c8238..f301672 100644 --- a/source/table.cpp +++ b/source/table.cpp @@ -122,22 +122,22 @@ Table::Loader::Loader(Table &t): void Table::Loader::cell_text(unsigned r, unsigned c, const string &t) { - static_cast(wdg).set_cell_text(r, c, t); + static_cast
(obj).set_cell_text(r, c, t); } void Table::Loader::column_width(unsigned c, unsigned w) { - static_cast
(wdg).set_column_width(c, w); + static_cast
(obj).set_column_width(c, w); } void Table::Loader::columns(unsigned c) { - static_cast
(wdg).set_columns(c); + static_cast
(obj).set_columns(c); } void Table::Loader::rows(unsigned r) { - static_cast
(wdg).set_rows(r); + static_cast
(obj).set_rows(r); } } // namespace GLtk