summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrank Schönheit <fs@openoffice.org>2001-06-27 13:56:47 +0000
committerFrank Schönheit <fs@openoffice.org>2001-06-27 13:56:47 +0000
commitcf4f30b6c9c5414f4357c1e6473339cf06d28a89 (patch)
tree88d14f1c957e51960749c6ae7adfe683b4d89b6f
parent6e87fc4769c5982da06ea1ba341b057fc733c2bc (diff)
added int for max result records
-rw-r--r--connectivity/source/inc/mozaddressbook/MABConnection.hxx11
1 files changed, 6 insertions, 5 deletions
diff --git a/connectivity/source/inc/mozaddressbook/MABConnection.hxx b/connectivity/source/inc/mozaddressbook/MABConnection.hxx
index 0707e0ef8f90..b967e78bd3bb 100644
--- a/connectivity/source/inc/mozaddressbook/MABConnection.hxx
+++ b/connectivity/source/inc/mozaddressbook/MABConnection.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: MABConnection.hxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: fs $ $Date: 2001-06-25 09:51:16 $
+ * last change: $Author: fs $ $Date: 2001-06-27 14:56:47 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -79,8 +79,9 @@ namespace connectivity
class OMozabConnection : public file::OConnection
{
- sal_Int32 m_nAnonABCount;
rtl::OUString m_sMozillaURI;
+ sal_Int32 m_nAnonABCount;
+ sal_Int32 m_nMaxResultRecords;
sal_Bool m_UsesFactory ;
sal_Bool m_IsLDAP ;
@@ -112,8 +113,8 @@ namespace connectivity
sal_Bool usesFactory(void) const { return m_UsesFactory ; }
sal_Bool isLDAP(void) const { return m_IsLDAP ; }
- sal_Int32 getNextAnonymousAB()
- { return (++m_nAnonABCount); }
+ sal_Int32 getNextAnonymousAB() { return (++m_nAnonABCount); }
+ sal_Int32 getMaxResultRecords() { return m_nMaxResultRecords; }
};
}
}