summaryrefslogtreecommitdiff
path: root/include/vcl
diff options
context:
space:
mode:
Diffstat (limited to 'include/vcl')
-rw-r--r--include/vcl/font/Feature.hxx4
-rw-r--r--include/vcl/imagerepository.hxx2
-rw-r--r--include/vcl/mnemonicengine.hxx2
-rw-r--r--include/vcl/ppdparser.hxx6
4 files changed, 7 insertions, 7 deletions
diff --git a/include/vcl/font/Feature.hxx b/include/vcl/font/Feature.hxx
index b56ce19ba194..a6d4587dcbce 100644
--- a/include/vcl/font/Feature.hxx
+++ b/include/vcl/font/Feature.hxx
@@ -93,7 +93,7 @@ struct VCL_DLLPUBLIC FeatureID
uint32_t m_aLanguageCode;
};
-struct VCL_DLLPUBLIC Feature
+struct Feature
{
Feature();
Feature(FeatureID const& rID, FeatureType eType);
@@ -105,7 +105,7 @@ struct VCL_DLLPUBLIC Feature
// This is basically duplicates hb_feature_t to avoid including HarfBuzz
// headers here, so the member types should remain compatible.
-struct VCL_DLLPUBLIC FeatureSetting
+struct FeatureSetting
{
FeatureSetting(OString feature);
diff --git a/include/vcl/imagerepository.hxx b/include/vcl/imagerepository.hxx
index 083a01667b9a..a1a28d3fa241 100644
--- a/include/vcl/imagerepository.hxx
+++ b/include/vcl/imagerepository.hxx
@@ -33,7 +33,7 @@ namespace vcl
//= ImageRepository
// provides access to the application's image repository (image.zip)
- class VCL_DLLPUBLIC ImageRepository
+ class ImageRepository
{
public:
/** loads an image from the application's image repository
diff --git a/include/vcl/mnemonicengine.hxx b/include/vcl/mnemonicengine.hxx
index 1574704158ed..45d05b5d0d3f 100644
--- a/include/vcl/mnemonicengine.hxx
+++ b/include/vcl/mnemonicengine.hxx
@@ -118,7 +118,7 @@ namespace vcl
//= MnemonicEngine
struct MnemonicEngine_Data;
- class VCL_DLLPUBLIC MnemonicEngine
+ class MnemonicEngine
{
::std::unique_ptr< MnemonicEngine_Data > m_pData;
diff --git a/include/vcl/ppdparser.hxx b/include/vcl/ppdparser.hxx
index 71a17dcc70f5..2d0701c4a859 100644
--- a/include/vcl/ppdparser.hxx
+++ b/include/vcl/ppdparser.hxx
@@ -54,7 +54,7 @@ struct VCL_DLLPUBLIC PPDValue
* PPDKey - a container for the available options (=values) of a PPD keyword
*/
-class VCL_DLLPUBLIC PPDKey
+class PPDKey
{
friend class PPDParser;
friend class CPDManager;
@@ -110,7 +110,7 @@ struct PPDKeyhash
* PPDParser - parses a PPD file and contains all available keys from it
*/
-class VCL_DLLPUBLIC PPDParser
+class PPDParser
{
friend class PPDContext;
friend class CUPSManager;
@@ -224,7 +224,7 @@ public:
* contents of a PPDParser.
*/
-class VCL_DLLPUBLIC PPDContext
+class PPDContext
{
typedef std::unordered_map< const PPDKey*, const PPDValue*, PPDKeyhash > hash_type;
hash_type m_aCurrentValues;