| author | Stephan Bergmann <sbergman@redhat.com> | 2012-08-22 10:08:36 (GMT) |
|---|---|---|
| committer | Stephan Bergmann <sbergman@redhat.com> | 2012-08-22 10:09:00 (GMT) |
| commit | 4f9e522bef181e64f2ed0e0874202a6246d23608 (patch) (side-by-side diff) | |
| tree | d9cd901932944166af3cbe87e37a4dc713e9fb09 | |
| parent | 9a20a1e1a96be6c5d79a9f19a536089a85960f3d (diff) | |
| download | core-4f9e522bef181e64f2ed0e0874202a6246d23608.zip core-4f9e522bef181e64f2ed0e0874202a6246d23608.tar.gz | |
Use typedef instead of trivial inheritance
Change-Id: I66155e362d5f44f9be8114099c46473ac846340c
| -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 0d768f0..94fabbe 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 ffae34c..81121c1 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 |
