summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2012-04-18 23:12:58 +0200
committerMichael Stahl <mstahl@redhat.com>2012-04-18 23:16:54 +0200
commitbaafe1cf57fa101e6308ed9f60cf0be46d3c22d8 (patch)
tree7a978cc8581d2bfd6f49d635e8cf120e7a19c410
parentmove tools/table.hxx to binfilter (diff)
downloadbinfilter-baafe1cf57fa101e6308ed9f60cf0be46d3c22d8.tar.gz
binfilter-baafe1cf57fa101e6308ed9f60cf0be46d3c22d8.zip
table.hxx: oops, forgot TOOLS_DLLPUBLIC in there
-rw-r--r--binfilter/inc/bf_tools/table.hxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/binfilter/inc/bf_tools/table.hxx b/binfilter/inc/bf_tools/table.hxx
index e39b33460..89d61af08 100644
--- a/binfilter/inc/bf_tools/table.hxx
+++ b/binfilter/inc/bf_tools/table.hxx
@@ -28,7 +28,6 @@
#ifndef _TOOLS_TABLE_HXX
#define _TOOLS_TABLE_HXX
-#include "tools/toolsdllapi.h"
#include <tools/solar.h>
#include <bf_tools/contnr.hxx>
@@ -41,11 +40,11 @@ namespace binfilter
#define TABLE_ENTRY_NOTFOUND CONTAINER_ENTRY_NOTFOUND
-class TOOLS_DLLPUBLIC Table : private Container
+class Table : private Container
{
private:
sal_uIntPtr nCount;
- TOOLS_DLLPRIVATE sal_uIntPtr ImplGetIndex( sal_uIntPtr nKey, sal_uIntPtr* pIndex = NULL ) const;
+ SAL_DLLPRIVATE sal_uIntPtr ImplGetIndex( sal_uIntPtr nKey, sal_uIntPtr* pIndex = NULL ) const;
public:
Table( sal_uInt16 nInitSize = 16, sal_uInt16 nReSize = 16 );
Table( const Table& rTable ) : Container( rTable )