diff options
Diffstat (limited to 'sw/source/ui/dbui/dbtree.cxx')
-rw-r--r-- | sw/source/ui/dbui/dbtree.cxx | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/sw/source/ui/dbui/dbtree.cxx b/sw/source/ui/dbui/dbtree.cxx index 96d95a85d0..3595e44fc5 100644 --- a/sw/source/ui/dbui/dbtree.cxx +++ b/sw/source/ui/dbui/dbtree.cxx @@ -95,7 +95,7 @@ class SwDBTreeList_Impl : public cppu::WeakImplHelper1 < XContainerListener > virtual void SAL_CALL elementReplaced( const ContainerEvent& Event ) throw (RuntimeException); virtual void SAL_CALL disposing( const EventObject& Source ) throw (RuntimeException); - BOOL HasContext(); + sal_Bool HasContext(); SwWrtShell* GetWrtShell() { return pWrtSh;} void SetWrtShell(SwWrtShell& rSh) { pWrtSh = &rSh;} Reference< XNameAccess > GetContext() const {return xDBContext;} @@ -127,7 +127,7 @@ void SwDBTreeList_Impl::elementRemoved( const ContainerEvent& rEvent ) throw (Ru SolarMutexGuard aGuard; ::rtl::OUString sSource; rEvent.Accessor >>= sSource; - for(USHORT i = 0; i < aConnections.Count(); i++) + for(sal_uInt16 i = 0; i < aConnections.Count(); i++) { SwConnectionDataPtr pPtr = aConnections[i]; if(pPtr->sSourceName == sSource) @@ -148,7 +148,7 @@ void SwDBTreeList_Impl::elementReplaced( const ContainerEvent& rEvent ) throw (R elementRemoved(rEvent); } -BOOL SwDBTreeList_Impl::HasContext() +sal_Bool SwDBTreeList_Impl::HasContext() { if(!xDBContext.is()) { @@ -170,7 +170,7 @@ BOOL SwDBTreeList_Impl::HasContext() Reference<XConnection> SwDBTreeList_Impl::GetConnection(const rtl::OUString& rSourceName) { Reference<XConnection> xRet; - for(USHORT i = 0; i < aConnections.Count(); i++) + for(sal_uInt16 i = 0; i < aConnections.Count(); i++) { SwConnectionDataPtr pPtr = aConnections[i]; if(pPtr->sSourceName == rSourceName) @@ -191,12 +191,12 @@ Reference<XConnection> SwDBTreeList_Impl::GetConnection(const rtl::OUString& rS SwDBTreeList::SwDBTreeList(Window *pParent, const ResId& rResId, SwWrtShell* pSh, - const String& rDefDBName, const BOOL bShowCol): + const String& rDefDBName, const sal_Bool bShowCol): SvTreeListBox (pParent, rResId), aImageList (SW_RES(ILIST_DB_DLG )), sDefDBName (rDefDBName), - bInitialized (FALSE), + bInitialized (sal_False), bShowColumns (bShowCol), pImpl(new SwDBTreeList_Impl(pSh)) { @@ -216,7 +216,7 @@ void SwDBTreeList::InitTreeList() if(!pImpl->HasContext() && pImpl->GetWrtShell()) return; SetSelectionMode(SINGLE_SELECTION); - SetWindowBits(WB_HASLINES|WB_CLIPCHILDREN|WB_SORT|WB_HASBUTTONS|WB_HASBUTTONSATROOT|WB_HSCROLL); + SetStyle(GetStyle()|WB_HASLINES|WB_CLIPCHILDREN|WB_SORT|WB_HASBUTTONS|WB_HASBUTTONSATROOT|WB_HSCROLL); // don't set font, so that the Control's font is being applied! SetSpaceBetweenEntries(0); SetNodeBitmaps( aImageList.GetImage(IMG_COLLAPSE), @@ -234,24 +234,24 @@ void SwDBTreeList::InitTreeList() for(long i = 0; i < nCount; i++) { String sDBName(pDBNames[i]); - InsertEntry(sDBName, aImg, aImg, NULL, TRUE); + InsertEntry(sDBName, aImg, aImg, NULL, sal_True); } String sDBName(sDefDBName.GetToken(0, DB_DELIM)); String sTableName(sDefDBName.GetToken(1, DB_DELIM)); String sColumnName(sDefDBName.GetToken(2, DB_DELIM)); Select(sDBName, sTableName, sColumnName); - bInitialized = TRUE; + bInitialized = sal_True; } void SwDBTreeList::AddDataSource(const String& rSource) { Image aImg = aImageList.GetImage(IMG_DB); - SvLBoxEntry* pEntry = InsertEntry(rSource, aImg, aImg, NULL, TRUE); + SvLBoxEntry* pEntry = InsertEntry(rSource, aImg, aImg, NULL, sal_True); SvTreeListBox::Select(pEntry); } -void SwDBTreeList::ShowColumns(BOOL bShowCol) +void SwDBTreeList::ShowColumns(sal_Bool bShowCol) { if (bShowCol != bShowColumns) { @@ -259,7 +259,7 @@ void SwDBTreeList::ShowColumns(BOOL bShowCol) String sTableName, sColumnName; String sDBName(GetDBName(sTableName, sColumnName)); - SetUpdateMode(FALSE); + SetUpdateMode(sal_False); SvLBoxEntry* pEntry = First(); @@ -279,7 +279,7 @@ void SwDBTreeList::ShowColumns(BOOL bShowCol) { Select(sDBName, sTableName, sColumnName); // force RequestingChilds } - SetUpdateMode(TRUE); + SetUpdateMode(sal_True); } } @@ -298,7 +298,7 @@ void SwDBTreeList::RequestingChilds(SvLBoxEntry* pParent) if(!pImpl->GetContext()->hasByName(sSourceName)) return; Reference<XConnection> xConnection = pImpl->GetConnection(sSourceName); - BOOL bTable = pParent->GetUserData() == 0; + sal_Bool bTable = pParent->GetUserData() == 0; Reference<XColumnsSupplier> xColsSupplier; if(bTable) { @@ -420,7 +420,7 @@ IMPL_LINK( SwDBTreeList, DBCompare, SvSortData*, pData ) return DefaultCompare(pData); // otherwise call base class } -String SwDBTreeList::GetDBName(String& rTableName, String& rColumnName, BOOL* pbIsTable) +String SwDBTreeList::GetDBName(String& rTableName, String& rColumnName, sal_Bool* pbIsTable) { String sDBName; SvLBoxEntry* pEntry = FirstSelected(); @@ -449,8 +449,8 @@ void SwDBTreeList::Select(const String& rDBName, const String& rTableName, const { SvLBoxEntry* pParent; SvLBoxEntry* pChild; - USHORT nParent = 0; - USHORT nChild = 0; + sal_uInt16 nParent = 0; + sal_uInt16 nChild = 0; while ((pParent = GetEntry(nParent++)) != NULL) { |