1. 22 Agu, 2011 27 kayıt (commit)
  2. 21 Agu, 2011 13 kayıt (commit)
    • Norbert Thiebaud's avatar
    • Xisco Fauli's avatar
    • Xisco Fauli's avatar
      Merge branch 'master' into feature/gsoc2011_wizards · 6c76e4db
      Xisco Fauli yazdı
      Conflicts:
      	automation/source/inc/cmdbasestream.hxx
      	automation/source/server/cmdbasestream.cxx
      	automation/source/server/retstrm.hxx
      	automation/source/testtool/cmdstrm.cxx
      	automation/source/testtool/cmdstrm.hxx
      	automation/source/testtool/tcommuni.cxx
      	basctl/prj/d.lst
      	basctl/uiconfig/basicide/toolbar/findbar.xml
      	cui/source/dialogs/about.cxx
      	cui/source/dialogs/about.src
      	cui/source/inc/about.hxx
      	extensions/source/abpilot/abpservices.cxx
      	extensions/source/dbpilots/dbpservices.cxx
      	extensions/source/propctrlr/pcrservices.cxx
      	extensions/source/svg/makefile.mk
      	forms/Library_frm.mk
      	lingucomponent/source/hyphenator/altlinuxhyph/hyphen/hyphenimp.cxx
      	lingucomponent/source/spellcheck/spell/sspellimp.cxx
      	package/prj/d.lst
      	package/source/zipapi/XMemoryStream.cxx
      	package/source/zipapi/XMemoryStream.hxx
      	setup_native/prj/d.lst
      	setup_native/source/win32/customactions/relnotes/makefile.mk
      	tools/test/export.map
      	wizards/com/sun/star/wizards/common/ConfigGroup.py
      	wizards/com/sun/star/wizards/common/ConfigNode.py
      	wizards/com/sun/star/wizards/common/Configuration.py
      	wizards/com/sun/star/wizards/common/Desktop.py
      	wizards/com/sun/star/wizards/common/FileAccess.py
      	wizards/com/sun/star/wizards/common/Helper.py
      	wizards/com/sun/star/wizards/common/SystemDialog.py
      	wizards/com/sun/star/wizards/document/OfficeDocument.py
      	wizards/com/sun/star/wizards/fax/FaxDocument.py
      	wizards/com/sun/star/wizards/fax/FaxWizardDialog.py
      	wizards/com/sun/star/wizards/fax/FaxWizardDialogConst.py
      	wizards/com/sun/star/wizards/fax/FaxWizardDialogImpl.py
      	wizards/com/sun/star/wizards/fax/FaxWizardDialogResources.py
      	wizards/com/sun/star/wizards/letter/LetterDocument.py
      	wizards/com/sun/star/wizards/letter/LetterWizardDialog.py
      	wizards/com/sun/star/wizards/letter/LetterWizardDialogConst.py
      	wizards/com/sun/star/wizards/letter/LetterWizardDialogImpl.py
      	wizards/com/sun/star/wizards/letter/LetterWizardDialogResources.py
      	wizards/com/sun/star/wizards/text/TextDocument.py
      	wizards/com/sun/star/wizards/text/TextFieldHandler.py
      	wizards/com/sun/star/wizards/text/TextSectionHandler.py
      	wizards/com/sun/star/wizards/text/ViewHandler.py
      	wizards/com/sun/star/wizards/ui/UnoDialog.py
      	wizards/com/sun/star/wizards/ui/UnoDialog2.py
      	wizards/com/sun/star/wizards/ui/WizardDialog.py
      	wizards/com/sun/star/wizards/ui/event/CommonListener.py
      	wizards/com/sun/star/wizards/ui/event/DataAware.py
      	wizards/com/sun/star/wizards/ui/event/RadioDataAware.py
      	wizards/com/sun/star/wizards/ui/event/UnoDataAware.py
      	wizards/util/helpids.h
      	wizards/util/hidother.src
      	xmlsecurity/prj/build.lst
      	xmlsecurity/prj/d.lst
      	xmlsecurity/qa/certext/SanCertExt.cxx
      6c76e4db
    • Norbert Thiebaud's avatar
    • Matúš Kukan's avatar
      unusedcode: svtools:: · 4b8f8872
      Matúš Kukan yazdı
      4b8f8872
    • Matúš Kukan's avatar
      unusedcode: CollatorWrapper · 36703ca1
      Matúš Kukan yazdı
      36703ca1
    • Tor Lillqvist's avatar
      fb9f4d81
    • Tor Lillqvist's avatar
      Link cppu statically to gcc3_uno on iOS · b6a9f356
      Tor Lillqvist yazdı
      b6a9f356
    • Tor Lillqvist's avatar
      c209bef8
    • Joseph Powers's avatar
      Rename List -> OStringList · f4330407
      Joseph Powers yazdı
      I also renamed the varable from list to stringlist.
      f4330407
    • Joseph Powers's avatar
      Rename List -> WeakReferenceList · 25ad04f7
      Joseph Powers yazdı
      Just to clearify which List we're talking about.
      25ad04f7
    • Joseph Powers's avatar
      Rename List -> NodeList · 97ae05a4
      Joseph Powers yazdı
      List was defined as std::vector< Node* >; but calling it List is confusing
      since you don't know what type of list it is. Also it's just asking for
      compile issues since we also use std::List, a custom List<>, & a class List.
      
      I also removed Node::Children() since it wasn't used.
      97ae05a4
    • Tor Lillqvist's avatar
      Revert "I am tired of thesee assertions, put them behind dbglevel>2" · 9097947b
      Tor Lillqvist yazdı
      Nah, having them behind dbglevel>1 is fine (which already means these
      assertions won't normally be compiled even with --enable-debug).
      
      I got mislead as I was building with dbglevel=2 everywhere. But
      pondering the point of dbglevel a.k.a. OSL_DEBUG_LEVEL, I think the
      right way to see it is: You are not supposed to build all (or large
      parts) of LibreOffice with dbglevel=2. If we used OSL_TRACE all over
      the place as thoroughly as in some files in sal/rtl, that would lead
      to astronomical amounts of tracing output. (We don't use OSL_TRACE
      like that, but that is another thing...)
      
      I think the intended use of dbglevel is that you should build with
      dbglevel=2 only the small part of code you are currently actively
      working on, when you want to see trace output.
      
      Of course, another problem then is that in some modules and/or
      libraries it might not be possible to compile just a part of the
      sources with dbglevel=2. That should be fixed.
      
      This reverts commit a3bad285.
      9097947b