diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2012-08-22 12:08:36 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-08-22 12:09:00 +0200 |
commit | 4f9e522bef181e64f2ed0e0874202a6246d23608 (patch) | |
tree | d9cd901932944166af3cbe87e37a4dc713e9fb09 /svx/inc | |
parent | 9a20a1e1a96be6c5d79a9f19a536089a85960f3d (diff) |
Use typedef instead of trivial inheritance
Change-Id: I66155e362d5f44f9be8114099c46473ac846340c
Diffstat (limited to 'svx/inc')
-rw-r--r-- | svx/inc/svx/polypolygoneditor.hxx | 2 | ||||
-rw-r--r-- | svx/inc/svx/svdmark.hxx | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/svx/inc/svx/polypolygoneditor.hxx b/svx/inc/svx/polypolygoneditor.hxx index 0d768f0c84a1..94fabbe4e292 100644 --- a/svx/inc/svx/polypolygoneditor.hxx +++ b/svx/inc/svx/polypolygoneditor.hxx @@ -27,8 +27,6 @@ #include <basegfx/polygon/b2dpolypolygon.hxx> #include <set> -class SdrUShortCont; - namespace sdr { diff --git a/svx/inc/svx/svdmark.hxx b/svx/inc/svx/svdmark.hxx index ffae34ca7984..81121c1ffd97 100644 --- a/svx/inc/svx/svdmark.hxx +++ b/svx/inc/svx/svdmark.hxx @@ -43,7 +43,7 @@ class SdrObjList; class SdrObject; class SdrPageView; -class SdrUShortCont : public std::set<sal_uInt16> {}; +typedef std::set<sal_uInt16> SdrUShortCont; // Alles was eine View ueber ein markiertes Objekt wissen muss |