Kaydet (Commit) ab7bc4f4 authored tarafından Noel Grandin's avatar Noel Grandin Kaydeden (comit) Michael Stahl

sal_Bool->bool in registry

Change-Id: I6afabf33e1d1ab890c979193c25381e0d38c1f50
üst 2765cf0c
......@@ -53,9 +53,9 @@ class BlopObject
public:
const sal_uInt8* m_pBuffer;
sal_uInt32 m_bufferLen;
sal_Bool m_isCopied;
bool m_isCopied;
BlopObject(const sal_uInt8* buffer, sal_uInt32 len, sal_Bool copyBuffer);
BlopObject(const sal_uInt8* buffer, sal_uInt32 len, bool copyBuffer);
// throws std::bad_alloc
~BlopObject();
......@@ -124,7 +124,7 @@ public:
}
};
BlopObject::BlopObject(const sal_uInt8* buffer, sal_uInt32 len, sal_Bool copyBuffer)
BlopObject::BlopObject(const sal_uInt8* buffer, sal_uInt32 len, bool copyBuffer)
: m_bufferLen(len)
, m_isCopied(copyBuffer)
{
......
......@@ -103,10 +103,10 @@ public:
~ORegistry();
sal_Bool isReadOnly() const
bool isReadOnly() const
{ return m_readOnly; }
sal_Bool isOpen() const
bool isOpen() const
{ return m_isOpen; }
ORegKey* getRootKey();
......@@ -160,8 +160,8 @@ private:
sal_uInt32 m_refCount;
osl::Mutex m_mutex;
sal_Bool m_readOnly;
sal_Bool m_isOpen;
bool m_readOnly;
bool m_isOpen;
rtl::OUString m_name;
store::OStoreFile m_file;
KeyMap m_openKeyTable;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment