diff options
author | Sebastian Geerken <devnull@localhost> | 2014-03-01 21:26:25 +0100 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2014-03-01 21:26:25 +0100 |
commit | 975ba73389d2de0cd2bb50183bd988eab6ba0e06 (patch) | |
tree | 67947a7e22dd049685dc034223c212e2ae14c902 /dw/table.cc | |
parent | 6369c18d186d52f0f3f5082ff6c9fdcf5c9285d1 (diff) | |
parent | 8818cda9ca4e4c19c4c5fcee68460d5ba0cd5ba2 (diff) |
Merge with main repo.
Diffstat (limited to 'dw/table.cc')
-rw-r--r-- | dw/table.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/dw/table.cc b/dw/table.cc index eef1b6ce..565dfc9e 100644 --- a/dw/table.cc +++ b/dw/table.cc @@ -98,6 +98,8 @@ Table::~Table() delete baseline; delete rowStyle; delete colPercents; + + DBG_OBJ_DELETE (); } void Table::sizeRequestImpl (core::Requisition *requisition) @@ -1070,7 +1072,7 @@ void Table::apportion_percentages2(int totalWidth, int forceTotalWidth) for (int col = 0; col < numCols; col++) { if (core::style::isPerLength (colPercents->get(col))) { // This could cause rounding errors: - // + // // int d = // core::dw::multiplyWithPerLength (extraWidth, // colPercents->get(col)) |