summaryrefslogtreecommitdiffstats
path: root/framework
Commit message (Collapse)AuthorAgeFilesLines
* removed unused const rtl::OUStringTakeshi Abe2012-05-1811-21/+0
| | | | Change-Id: If02be864f958de96ae1c54fe575b1828410390b1
* remove unneeded include of boost/bind.hppCaolán McNamara2012-05-161-1/+1
| | | | Change-Id: I5a254459a491b9547530d8e312260dceed21f25c
* Mode (r/o vs r/w) changes can affect title, tooStephan Bergmann2012-05-151-4/+7
| | | | Change-Id: I69ecb9fa157c706c90132e7801def2253529158d
* removed unused static rtl::OUStringTakeshi Abe2012-05-143-7/+0
| | | | Change-Id: I5a097beaaeb30214ed6071bba1297e551291922b
* convert GetComment family to rtl::OUStringCaolán McNamara2012-05-141-3/+3
| | | | Change-Id: I563ab83a24ca4f839892548b350486e83dd071d3
* Reduce broadcasting noise on initial title computationStephan Bergmann2012-05-102-22/+17
| | | | | | | ...otherwise, SfxBaseModel::getTitle calls itself recursively until TitleHelper::m_sTitle has converged. Change-Id: I90577d1c2e4275ff2187d6531a1ca61e8355819b
* resolved fdo#46160 query model only once whether it is a previewEike Rathke2012-05-043-19/+47
| | | | | | | | | | | | Query a frame's model only once whether it is a preview model, instead of doing it for each toolbar and menubar and statusbar and progressbar. Each call via SfxBaseModel::getArgs() results in SfxObjectShell::GetVisArea() that at least in Calc determines how far visible attributes extend, with several toolbars requested on each cell edit. getArgs() calls GetVisArea() still too many times when loading a document even if the caller doesn't evaluate the WinExtent property, this is an opportunity for further optimization.
* fdo#48253 Expand SAL_STATIC_CAST and SAL_CONST_CASTThomas Arnhold2012-05-0416-43/+43
| | | | Change-Id: I50f0887ceb4517d7ef234f970ca2ba679d533382
* make ResId::toString a non-static memberCaolán McNamara2012-04-302-2/+4
| | | | Change-Id: I756c0a19bea7b1cc0e290d9f382a04d655819bfb
* make gbuild the default assumption of build.plBjoern Michaelsen2012-04-291-1/+0
| | | | | | | | 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
* Replace css macro with namespace for nicer namespacingThomas Arnhold2012-04-214-27/+7
|
* Simplify the construction of the '>>' menu.Jan Holesovsky2012-04-141-19/+3
|
* fdo#34392 recompute column widths after font scale change in startcenterGábor Stefanik2012-04-121-0/+19
|
* offapi: remove obsolete XInplaceLayout (2nd try)Thomas Arnhold2012-04-122-24/+2
| | | | This is related to 10e580c57b907420e8c6d816325445a40a720e4a
* Bin pointless "added by shizhoubo" style commentsTor Lillqvist2012-04-112-23/+12
|
* fdo#38276: Improve the ">>" toolbar overflow menuIain Billett2012-04-111-1/+19
|
* s/pathes/paths/Tor Lillqvist2012-04-097-7/+7
|
* s/pathes/paths/Tor Lillqvist2012-04-091-3/+3
|
* add package deps for resourcesDavid Tardon2012-04-091-0/+4
|
* Replaced a few equal calls with ==Szabolcs Dezsi2012-04-081-3/+3
|
* LinkTarget.mk: remove gb_LinkTarget_add_package_headersMichael Stahl2012-04-081-1/+1
|
* gbuild: "use" vs. "add":Michael Stahl2012-04-088-15/+15
| | | | | | | | | Naming convention for gbuild methods: - "add" is used for stuff that is logically a part of the target (i.e. not registered at the Module, but defined in the target's makefile) - "use" is used for stuff that is logically a different target (i.e. it is registered at the Module, has it's own makefile, may be in a different module than the target)
* Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2012-04-068-48/+31
|
* Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2012-04-0623-113/+113
| | | | | | Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\)) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
* Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2012-04-0612-49/+49
| | | | | | Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\) ) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
* Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2012-04-062-2/+2
| | | | | | Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)return \([^()]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\) ) *);/\1return \2 == \3;/' \{\} \;
* Fix Prefer prefix ++/-- operatorsJulien Nabet2012-04-051-1/+1
| | | | Includes too replacement < by != for comparison between current and end iterators
* remove an assert from an attempt to silence clang's false warningLuboš Luňák2012-04-041-8/+1
| | | | | | | http://llvm.org/bugs/show_bug.cgi?id=12459 It is not clear to me why the explicit cast was there in the first place, but removing it probably can't make the situation worse than aborting incorrectly.
* WaE: call to pure virtual member functionTor Lillqvist2012-04-041-1/+7
|
* fix the initial font size in the Start CenterIvan Timofeev2012-04-031-0/+3
| | | | | Recover the code that was for some reason removed in commit 78e8d5f0d62f910b8561a1c4fd7ebd8ae4cfb9f8.
* remove static objects from static_initialization_and_destruction chainCaolán McNamara2012-04-023-61/+47
|
* remove static objects from static_initialization_and_destruction chainCaolán McNamara2012-04-0216-419/+221
|
* remove static OUStrings from static_initialization_and_destruction chainCaolán McNamara2012-03-303-46/+26
|
* remove static OUStrings from static_initialization_and_destruction chainCaolán McNamara2012-03-291-5/+5
|
* remove static OUStrings from static_initialization_and_destruction chainCaolán McNamara2012-03-281-8/+10
|
* remove static OUStrings from static_initialization_and_destruction chainCaolán McNamara2012-03-281-6/+6
|
* drop unused global rtl::OUStringsCaolán McNamara2012-03-281-2/+0
|
* ditch some UniStrings and intermediate temporariesCaolán McNamara2012-03-261-2/+2
|
* reduce over use of static OUStringsCaolán McNamara2012-03-263-35/+25
|
* .dtd files don't need executable bitsMichael Stahl2012-03-237-0/+0
|
* .xcl files don't need executable bitsMichael Stahl2012-03-231-0/+0
|
* .sce files don't need executable bitsMichael Stahl2012-03-233-0/+0
|
* .component files don't need executable bitsMichael Stahl2012-03-234-0/+0
|
* .gif files don't need executable bitsMichael Stahl2012-03-231-0/+0
|
* .hrc files don't need executable bitsMichael Stahl2012-03-232-0/+0
|
* .h files don't need executable bitsMichael Stahl2012-03-234-0/+0
|
* .java files don't need executable bitsMichael Stahl2012-03-2335-0/+0
|
* overly static lingering OUStringsCaolán McNamara2012-03-232-19/+19
|
* annoying PATHES->PATHS typosCaolán McNamara2012-03-222-32/+26
|
* chmod -xTor Lillqvist2012-03-211-0/+0
|