summaryrefslogtreecommitdiff
path: root/hwpfilter
diff options
context:
space:
mode:
authorJuergen Funk <juergen.funk_ml@cib.de>2015-12-06 14:26:51 +0100
committerTor Lillqvist <tml@collabora.com>2015-12-07 14:15:49 +0000
commita27f2397f091d37cb9cf1ab98b0e96ca8dfa7406 (patch)
treee85763f63ae0f39d53c0133993f370cafc4aacdd /hwpfilter
parent5cc574fefc8a2ee39db4a4bd843a3ec67dce2f11 (diff)
unused Picture::Type()
and removed unused TxtBox::Type(), too Change-Id: I4a1d7f1cbbc5bb4d929fe7420db8f827dd8b142d Reviewed-on: https://gerrit.libreoffice.org/20424 Reviewed-by: Tor Lillqvist <tml@collabora.com> Tested-by: Tor Lillqvist <tml@collabora.com>
Diffstat (limited to 'hwpfilter')
-rw-r--r--hwpfilter/source/hbox.cxx6
-rw-r--r--hwpfilter/source/hbox.h6
2 files changed, 0 insertions, 12 deletions
diff --git a/hwpfilter/source/hbox.cxx b/hwpfilter/source/hbox.cxx
index db247fa6ddde..fb3037d4eefb 100644
--- a/hwpfilter/source/hbox.cxx
+++ b/hwpfilter/source/hbox.cxx
@@ -405,12 +405,6 @@ Picture::~Picture()
}
-int Picture::Type()
-{
- return pictype;
-}
-
-
// line(14)
// hidden(15)
Hidden::~Hidden()
diff --git a/hwpfilter/source/hbox.h b/hwpfilter/source/hbox.h
index 8e5dcaa2ccbe..f8fbd6e6c305 100644
--- a/hwpfilter/source/hbox.h
+++ b/hwpfilter/source/hbox.h
@@ -380,11 +380,6 @@ struct TxtBox: public FBox
* @returns Count of cell.
*/
int NCell() { return nCell; }
-/**
- * This is one of table, text-box, equalizer and button
- * @returns Type of this object.
- */
- int Type() { return type; }
virtual bool Read(HWPFile &hwpf) override;
};
@@ -654,7 +649,6 @@ struct Picture: public FBox
Picture();
virtual ~Picture();
- int Type ();
virtual bool Read (HWPFile &hwpf) override;
};