summaryrefslogtreecommitdiff
path: root/sw
AgeCommit message (Collapse)Author
2012-04-29make gbuild the default assumption of build.plBjoern Michaelsen
this removes dmake completely out of the build for migrated modules build.pl now assumes modules to be gbuild, unless there is a prj/dmake file Change-Id: I674a036b182ee13c5ec093e83cb3d38133112d3b
2012-04-28Resolves: fdo#33599 cursor in notes is reset to start on focus out/focus inCaolán McNamara
SidebarTxtControl::LoseFocus calls mrSidebarWin.UpdateData which takes the text from the postit if the postit has been modified and updates the field from it. That updates all listeners of that field which includes the postit itself, which in response updates its content from the field, which causes the cursor to be disabled, i.e the original contents have been removed and replaced with identical content, but the selection has been invalidated. Change-Id: Idcde25a85a3a657a6057e70a59e2219e224e009e
2012-04-28remove no-opt debug breakpointCaolán McNamara
Change-Id: I4ad5ca0bb27569442812ddf0c5cff101e96d4d84
2012-04-28sw: and a few more components for the ww8tok testMiklos Vajna
2012-04-28sw: tentative fix for ww8tok test failureMiklos Vajna
2012-04-27temporarily disable a test with a build race conditionLuboš Luňák
2012-04-27argh i am so stupidMichael Stahl
merge the 2 conflicting fixes to SwLineRects::ConnectEdges in 33ee840e7b45eb971feef83215841edc0ba66cd7 into something that maybe works.
2012-04-27testcase for n#757910Miklos Vajna
2012-04-27sw/qa/extras: no need to use different class names for these testsMiklos Vajna
2012-04-27n#757910 fix WW8 import of textboxes with thin border/inner marginMiklos Vajna
There were two problems here: First, nLineThick was already in twips, so converting it again from EMU rendered thin borders invisible. Second, when the border width is set to zero, that means a minimal border, but we interpreted it as default width (which resulted in less space for the textbox contents than required).
2012-04-26fdo#48037 fix RTF import of localized fieldsMiklos Vajna
2012-04-25decrypt code a bitLuboš Luňák
This should be technically the same like before, only the next one to read this will hopefully get less confused than I did.
2012-04-25warn when failing because of an unrecognized property in UNO callLuboš Luňák
2012-04-25refactor ImpSvtDataCaolán McNamara
2012-04-25WaE: hides overloaded virtual function, different approach, thanks to mst_Tor Lillqvist
2012-04-25WaE: defined as a struct here but previously declared as a classTor Lillqvist
2012-04-25warning: comparison between signed and unsigned integer expressions (Mac OS X)Stephan Bergmann
2012-04-25fdo#44211 (RTF) return default text encoding for LithuanianAurimas Fišeras
2012-04-25rework GetDefaultTextEncoding etc -> getBestTextEncodingFromLocaleCaolán McNamara
2012-04-25Revert "WaE: hides overloaded virtual function"Michael Stahl
This reverts commit 192edc5e65685a3093d94457dca9db8d3b891486. The method must be called Notify so the SfxBroadcaster calls it instead of the base class method that does nothing.
2012-04-25Fix spelling of parameter pbLevelOrVisibiblityChangedNoel Grandin
2012-04-25Convert SV_DECL_PTRARR_DEL(_DB_Columns) to boost::ptr_vectorNoel Grandin
2012-04-25Convert SV_DECL_PTRARR_DEL(TextBlockInfoArr) to boost::ptr_vectorNoel Grandin
2012-04-25Convert SV_DECL_PTRARR_DEL(SwColumns) to boost::ptr_vectorNoel Grandin
2012-04-25Convert SV_DECL_PTRARR(AutoTextGroups) to std::vectorNoel Grandin
2012-04-25fix previous commit:Michael Stahl
boost::ptr_vector::erase() will delete the element, but fortunately there is a transfer() method that can be used here.
2012-04-25Convert SV_DECL_PTRARR_DEL(SwEntryLst) to boost::ptr_vectorNoel Grandin
2012-04-25try not to change the serialization formatMichael Stahl
2012-04-25Convert SV_DECL_PTRARR_DEL(_SwNumFmtsAttrs) to boost::ptr_vectorNoel Grandin
2012-04-25Convert SV_DECL_PTRARR_DEL(AutoMarkEntryArr) to boost::ptr_vectorNoel Grandin
2012-04-25Convert SV_DECL_PTRARR(SvLBoxEntryArr) to std::vectorNoel Grandin
2012-04-25Convert SV_DECL_PTRARR_DEL(SwRedlineDataChildArr) to ptr_vectorNoel Grandin
2012-04-25Convert SV_DECL_PTRARR_DEL(SwRedlineDataParentArr) to ptr_vectorNoel Grandin
2012-04-25Convert SV_DECL_PTRARR_DEL(SwSelUnions) to boost::ptr_vectorNoel Grandin
2012-04-25Remove data structures there dead i.e. not doing any actual workNoel Grandin
2012-04-25Convert SV_DECL_PTRARR(SwChartBoxes) to std::vectorNoel Grandin
2012-04-25Convert SV_DECL_PTRARR_DEL(SwChartLines) to boost::ptr_vectorNoel Grandin
Had to use a class for the typedef declaration because the data structure is referenced in other header files.
2012-04-25move some functions from tblrwcl.hxx into cxx filesMichael Stahl
2012-04-25_FndBoxes was a PTRARR_DEL so use ptr_vectorMichael Stahl
2012-04-25Convert SV_DECL_PTRARR_DEL(_FndLines) to boost::ptr_vectorNoel Grandin
2012-04-25Convert SV_DECL_PTRARR(_FndBox*) to std::vectorNoel Grandin
2012-04-25fdo#48193 fix RTF import of fields without a resultMiklos Vajna
2012-04-25WaE: hides overloaded virtual functionTor Lillqvist
2012-04-25msfilter::util: avoid code duplication by merging from sw and writerfilterMiklos Vajna
2012-04-24SwXTextView: use cppu::OInterfaceContainerHelperMichael Stahl
2012-04-24fix double free in SwXTextView::removeSelectionChangeListenerMichael Stahl
dbaccess_complex segfaults because ptr_vector::erase actually deletes the element; also, a std::vector is more appropriate to store smart ptr. (regression from 8533a191f4434490aa44118bce0e5719477d957a)
2012-04-24fdo#38176 fix RTF export of non-breaking hyphen and optional hyphenMiklos Vajna
2012-04-24fdo#38176 fix RTF export of non-breaking spaceMiklos Vajna
2012-04-24Convert SV_DECL_PTRARR_DEL to boost::ptr_vectorNoel Grandin
2012-04-24DBG_UTIL vs OSL_DEBUG_LEVEL confusionStephan Bergmann