diff options
author | Jan Holesovsky <kendy@suse.cz> | 2011-03-18 15:59:29 +0100 |
---|---|---|
committer | Jan Holesovsky <kendy@suse.cz> | 2011-03-18 15:59:29 +0100 |
commit | 75a78c3224b3aa4b626381b8f4993019a2ea4036 (patch) | |
tree | 9de4fc4a455e66d5d478dbfb97655e09fef3ec2c /sw/source/ui/cctrl/swlbox.cxx | |
parent | 1cb177f424942549b547c2113129d607dec3c1e5 (diff) | |
parent | ae9f68d1e73a973046deee6fd602a2a4c3eba2a3 (diff) |
Merge remote-tracking branch 'origin/integration/dev300_m101'
Conflicts:
starmath/source/symbol.cxx
sw/source/core/doc/docnew.cxx
sw/source/core/doc/docnum.cxx
sw/source/core/draw/dview.cxx
sw/source/core/fields/docufld.cxx
sw/source/core/layout/calcmove.cxx
sw/source/filter/html/swhtml.cxx
sw/source/filter/rtf/rtftbl.cxx
sw/source/ui/config/modcfg.cxx
sw/source/ui/dialog/docstdlg.cxx
sw/source/ui/dialog/docstdlg.src
sw/source/ui/fldui/flddb.cxx
sw/source/ui/fldui/flddinf.cxx
sw/source/ui/fldui/flddok.cxx
sw/source/ui/fldui/fldfunc.cxx
sw/source/ui/fldui/fldmgr.cxx
sw/source/ui/fldui/fldpage.hxx
sw/source/ui/fldui/fldref.cxx
sw/source/ui/fldui/fldvar.cxx
sw/source/ui/fldui/fldvar.hxx
sw/source/ui/fldui/fldwrap.cxx
sw/source/ui/fldui/xfldui.cxx
sw/source/ui/inc/docstdlg.hxx
sw/source/ui/shells/langhelper.cxx
sw/source/ui/shells/txtattr.cxx
sw/source/ui/shells/txtcrsr.cxx
sw/source/ui/table/tabledlg.cxx
Diffstat (limited to 'sw/source/ui/cctrl/swlbox.cxx')
-rw-r--r-- | sw/source/ui/cctrl/swlbox.cxx | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/sw/source/ui/cctrl/swlbox.cxx b/sw/source/ui/cctrl/swlbox.cxx index 3dd0c0068c..22a64fd6b0 100644 --- a/sw/source/ui/cctrl/swlbox.cxx +++ b/sw/source/ui/cctrl/swlbox.cxx @@ -42,15 +42,15 @@ SV_IMPL_PTRARR(SwEntryLst, SwBoxEntry*) // Description: ListboxElement SwBoxEntry::SwBoxEntry() : - bModified(FALSE), - bNew(FALSE), + bModified(sal_False), + bNew(sal_False), nId(LISTBOX_APPEND) { } -SwBoxEntry::SwBoxEntry(const String& aNam, USHORT nIdx) : - bModified(FALSE), - bNew(FALSE), +SwBoxEntry::SwBoxEntry(const String& aNam, sal_uInt16 nIdx) : + bModified(sal_False), + bNew(sal_False), aName(aNam), nId(nIdx) { @@ -64,13 +64,13 @@ SwBoxEntry::SwBoxEntry(const SwBoxEntry& rOld) : { } -SwComboBox::SwComboBox(Window* pParent, const ResId& rId, USHORT nStyleBits ): +SwComboBox::SwComboBox(Window* pParent, const ResId& rId, sal_uInt16 nStyleBits ): ComboBox(pParent, rId), nStyle(nStyleBits) { // create administration for the resource's Stringlist - USHORT nSize = GetEntryCount(); - for( USHORT i=0; i < nSize; ++i ) + sal_uInt16 nSize = GetEntryCount(); + for( sal_uInt16 i=0; i < nSize; ++i ) { const SwBoxEntry* pTmp = new SwBoxEntry(ComboBox::GetEntry(i), i); aEntryLst.Insert(pTmp, aEntryLst.Count() ); @@ -87,7 +87,7 @@ void SwComboBox::InsertEntry(const SwBoxEntry& rEntry) InsertSorted(new SwBoxEntry(rEntry)); } -void SwComboBox::RemoveEntry(USHORT nPos) +void SwComboBox::RemoveEntry(sal_uInt16 nPos) { if(nPos >= aEntryLst.Count()) return; @@ -105,12 +105,12 @@ void SwComboBox::RemoveEntry(USHORT nPos) aDelEntryLst.C40_INSERT(SwBoxEntry, pEntry, aDelEntryLst.Count()); } -USHORT SwComboBox::GetEntryPos(const SwBoxEntry& rEntry) const +sal_uInt16 SwComboBox::GetEntryPos(const SwBoxEntry& rEntry) const { return ComboBox::GetEntryPos(rEntry.aName); } -const SwBoxEntry& SwComboBox::GetEntry(USHORT nPos) const +const SwBoxEntry& SwComboBox::GetEntry(sal_uInt16 nPos) const { if(nPos < aEntryLst.Count()) return *aEntryLst[nPos]; @@ -118,12 +118,12 @@ const SwBoxEntry& SwComboBox::GetEntry(USHORT nPos) const return aDefault; } -USHORT SwComboBox::GetRemovedCount() const +sal_uInt16 SwComboBox::GetRemovedCount() const { return aDelEntryLst.Count(); } -const SwBoxEntry& SwComboBox::GetRemovedEntry(USHORT nPos) const +const SwBoxEntry& SwComboBox::GetRemovedEntry(sal_uInt16 nPos) const { if(nPos < aDelEntryLst.Count()) return *aDelEntryLst[nPos]; @@ -134,13 +134,13 @@ const SwBoxEntry& SwComboBox::GetRemovedEntry(USHORT nPos) const void SwComboBox::InsertSorted(SwBoxEntry* pEntry) { ComboBox::InsertEntry(pEntry->aName); - USHORT nPos = ComboBox::GetEntryPos(pEntry->aName); + sal_uInt16 nPos = ComboBox::GetEntryPos(pEntry->aName); aEntryLst.C40_INSERT(SwBoxEntry, pEntry, nPos); } void SwComboBox::KeyInput( const KeyEvent& rKEvt ) { - USHORT nChar = rKEvt.GetCharCode(); + sal_uInt16 nChar = rKEvt.GetCharCode(); if(nStyle & CBS_FILENAME) { |