diff options
author | Sebastian Geerken <devnull@localhost> | 2014-05-28 00:58:21 +0200 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2014-05-28 00:58:21 +0200 |
commit | 4c47a19af4349ba45833ff37406f78bba1fde5ef (patch) | |
tree | cb22f4a523f4ff883c525378fb68c50e31c3d536 /dw/Makefile.am | |
parent | c0135425bdb0bdaeed57c99638e8bbeb94a5c17d (diff) |
Split up dw::TableCell in dw::AlignedTableCell (was: dw::TableCell) and dw::SimpleTableCell (derived from dw::Textblock). The HTML parser now uses only one of these two classes for table cells, not dw::Textblock anymore.
Diffstat (limited to 'dw/Makefile.am')
-rw-r--r-- | dw/Makefile.am | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/dw/Makefile.am b/dw/Makefile.am index 5306c5a5..496e31a8 100644 --- a/dw/Makefile.am +++ b/dw/Makefile.am @@ -57,6 +57,8 @@ libDw_fltk_a_SOURCES = \ libDw_fltk_a_CXXFLAGS = @LIBFLTK_CXXFLAGS@ libDw_widgets_a_SOURCES = \ + alignedtablecell.cc \ + alignedtablecell.hh \ alignedtextblock.cc \ alignedtextblock.hh \ bullet.cc \ @@ -71,10 +73,10 @@ libDw_widgets_a_SOURCES = \ outofflowmgr.hh \ ruler.cc \ ruler.hh \ + simpletablecell.cc \ + simpletablecell.hh \ table.cc \ table.hh \ - tablecell.cc \ - tablecell.hh \ textblock.cc \ textblock_iterator.cc \ textblock_linebreaking.cc \ |