summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHerbert Dürr <hdu@apache.org>2013-04-19 08:09:53 +0000
committerHerbert Dürr <hdu@apache.org>2013-04-19 08:09:53 +0000
commit88e51a69cf60f201526f32536a10c4163a29ec03 (patch)
tree45a9fca563f74561a07f9dabf6a960917e63c110
parent40b65cda94f45a87e31006b4947eeff4a1818dc0 (diff)
WaE: fix some minor class/struct mismatches
Notes
Notes: prefer: c31d7b012f953f4a677fd5a576c0aa8379897879
-rw-r--r--uui/source/iahndl.hxx2
-rw-r--r--vcl/inc/fontcache.hxx6
-rw-r--r--vcl/inc/printergfx.hxx4
-rw-r--r--vcl/inc/unx/salgdi.h4
4 files changed, 6 insertions, 10 deletions
diff --git a/uui/source/iahndl.hxx b/uui/source/iahndl.hxx
index eb5c441057a5..5f2436f1fd68 100644
--- a/uui/source/iahndl.hxx
+++ b/uui/source/iahndl.hxx
@@ -51,7 +51,7 @@ namespace com { namespace sun { namespace star {
class XMultiServiceFactory;
}
namespace security {
- class DocumentSignatureInformation;
+ struct DocumentSignatureInformation;
}
namespace task {
class FutureDocumentVersionProductUpdateRequest;
diff --git a/vcl/inc/fontcache.hxx b/vcl/inc/fontcache.hxx
index 11cf01c2c880..5e92c5090d30 100644
--- a/vcl/inc/fontcache.hxx
+++ b/vcl/inc/fontcache.hxx
@@ -36,11 +36,6 @@ namespace psp
class VCL_PLUGIN_PUBLIC FontCache
{
- struct FontDir;
- friend class FontDir;
- struct FontFile;
- friend class FontFile;
-
typedef std::list< PrintFontManager::PrintFont* > FontCacheEntry;
struct FontFile
{
@@ -93,3 +88,4 @@ public:
} // namespace psp
#endif // _PSPRINT_FONTCACHE_HXX
+
diff --git a/vcl/inc/printergfx.hxx b/vcl/inc/printergfx.hxx
index b17cb09457a6..84665a68f16c 100644
--- a/vcl/inc/printergfx.hxx
+++ b/vcl/inc/printergfx.hxx
@@ -35,7 +35,7 @@
namespace psp {
// forwards
-class JobData;
+struct JobData;
/*
* lightweight container to handle RGB values
@@ -124,7 +124,7 @@ class Font3;
class GlyphSet;
class PrinterJob;
class PrintFontManager;
-class KernPair;
+struct KernPair;
struct CharacterMetric;
/*
diff --git a/vcl/inc/unx/salgdi.h b/vcl/inc/unx/salgdi.h
index b74b8c4894a8..41853cb0c658 100644
--- a/vcl/inc/unx/salgdi.h
+++ b/vcl/inc/unx/salgdi.h
@@ -38,8 +38,8 @@
#include <deque>
// -=-= forwards -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
-struct ImplFontMetricData;
-struct ImplFontSelectData;
+class ImplFontMetricData;
+class ImplFontSelectData;
class SalBitmap;
class SalColormap;
class SalDisplay;