X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ftable.cpp;h=4a74e17ba5edec6d2b4e5ac42e1e9d56d0948c7b;hb=8352d5f2590cfcb09e92854be211399105408c4d;hp=c0c823822c425e70fb709d721f53853965dce884;hpb=91997dd3189b93a67179822ec2fed5f2a7bddb74;p=libs%2Fgltk.git diff --git a/source/table.cpp b/source/table.cpp index c0c8238..4a74e17 100644 --- a/source/table.cpp +++ b/source/table.cpp @@ -1,10 +1,3 @@ -/* $Id$ - -This file is part of libmspgltk -Copyright © 2008 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - #include #include #include "part.h" @@ -122,22 +115,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