summaryrefslogtreecommitdiff
path: root/cui/source
AgeCommit message (Collapse)Author
2014-06-24rename and rework SetCtrlPos to SetCtrlStyleCaolán McNamara
Change-Id: I5720f5f27ea5e7e9eefb6bfb53c30a52146c689e
2014-06-24unnecessary check before deleteCaolán McNamara
Change-Id: Ie5793f910dd58e8930c2c2b27df00bd073c26f35
2014-06-24drop ResizeCaolán McNamara
Change-Id: Ie8546cf0eb54888627dc2dfa47257de63b382f9d
2014-06-24drop SetPosSizePagesCaolán McNamara
Change-Id: I9835a4660ac9a9633ad81fc228b0e53b01fc85bf
2014-06-24strip SetPosSizeCtrls down to min requiredCaolán McNamara
Change-Id: I8c198f9d1b318b35e0dc6221291bb4a57805e3ae
2014-06-24meChoicePos is always PosLeft, simplifyCaolán McNamara
Change-Id: I40085b0db89484f0d24ecaccf910f4399198294d
2014-06-24RID_SVXDLG_NEWHYPERLINK conversion to .uiSzymon Kłos
Conflicts: cui/UIConfig_cui.mk Change-Id: I8f06518f2d84e333b553c247ca3d9a28d1280eea
2014-06-18Convert RID_SVXFLOAT_HYPERLINK_MARKWND to .uiPalenik Mihály
Change-Id: I58d21506ec17d1c0e73dd042b94ec2ee2e3ddf11 Reviewed-on: https://gerrit.libreoffice.org/9803 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-06-17bnc#882627: Allow to edit spacing to contents even with no borders visible.Matúš Kukan
SfxItemSet::MergeValue changes some items from SFX_ITEM_DEFAULT state to SFX_ITEM_SET which I think is a bug but this patch avoids the problem too. The issue was: visible changes in some tables, after changing e.g. borders spacing, because the cells had wrong SfxItemSet after the process. Change-Id: I676b211e1a4a1d7341c385d63503aa740718ed5d
2014-06-17improve the inlinesimplememberfunctions clang pluginNoel Grandin
Change-Id: I6d5a952901648e01904ef5c37f953c517304d31e
2014-06-13loplugin:staticcallStephan Bergmann
Change-Id: I6bc306aa59b5610b987871ea8cf6e561233178c6
2014-06-11Change SfxTabPage ctor SfxItemSet param from ref to pointerStephan Bergmann
...and also corresponding param of CreateTabPage function type and corresponding Craete functions. There were some call sites that passed undefined "null pointer references" and SfxTabPage internally uses a pointer member pSet that is checked for null anyway. Change-Id: I4eb3636155eac46c9c9d26e6e6e842e85d7e95af
2014-06-11Change SfxTabPage::Reset param from ref to pointerStephan Bergmann
...there was a call site that passed undefined "null pointer reference" (apparently in a case where the passed argument was actually unused) Change-Id: I663d4264b7a84f44ca69c732f3bc502f614b2b2a
2014-06-10Change SfxTabPage::FillItemSet param from ref to pointerStephan Bergmann
...there were a number of call sites that passed undefined "null pointer references" (apparently in cases where the passed argument was actually unused) Change-Id: I19799e90f0cd8e98367782441a5ea9df27b59830
2014-06-09loplugin: inlinesimplememberfunctionsNoel Grandin
Change-Id: I42119f656ca528286fb25d2d36c0af54b7d04a6b
2014-06-05various: remove SAL_THROW macroNoel Grandin
Change-Id: I9464179a736b91f5bc32eb5e5e89b3b4e3da3494
2014-06-04fdo#79243 UI:fix preview in imageCorp tap in writerAbdulaziz A Alayed
Change-Id: If13cabc21d804c9383b26f7ee5a40800cacc76a5
2014-06-04avoid problems with poppler's and vcl's FontInfo during runtimeMarkus Mohrhard
Change-Id: I1dbd256812cccae1e6ed0ad8bb34ce427e5e5be8
2014-06-03rather than use pixel widths, use appfont unitsCaolán McNamara
Change-Id: If9551f63ac59ffedd0bd614e4f4fe05c9047e1dc
2014-06-03MD_UPDATE_BASELINKS conversion to .uisk94
Change-Id: I98b47dc20b341375c9caae264c2213aeba6e066a Reviewed-on: https://gerrit.libreoffice.org/9620 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-05-28coverity#703935 Unchecked return valueCaolán McNamara
Change-Id: I9300af5f9c2c430d0e67bfb8e16478db6be65477
2014-05-27Export Config: Use ModelessDialogThomas Arnhold
The huge size of this dialog calls for a maximize button... Change-Id: I68706669ac4e10ea9d5cba5526e9f1b0eb3628b6
2014-05-27OSL_TRACE -> SAL_INFOThomas Arnhold
Change-Id: Ib9e1ed6119b5286871ac10136f7fcbefffe7aebe
2014-05-27Remove unnecessary semicolonsPeter Senna Tschudin
A simplified version of the semantic match that finds this problem is follows: (http://coccinelle.lip6.fr/) // <smpl> @r1@ statement S; position p,p1; @@ S@p1;@p @script:python r2@ p << r1.p; p1 << r1.p1; @@ if p[0].line != p1[0].line_end: cocci.include_match(False) @@ position r1.p; @@ -;@p // </smpl> Change-Id: Ib9708d37fbb4c6060f88d5dae3814a2d37b2091e Reviewed-on: https://gerrit.libreoffice.org/9493 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
2014-05-24cppcheck: redundantAssignmentThomas Arnhold
Change-Id: I1601d5b5dd2ba4ab2c3a0c9d70f337e98e4fe5c3
2014-05-24cppcheck: redundantAssignmentThomas Arnhold
Change-Id: I0eb832395f6a13ce1f372b6b67a1c178bc0dfa1a
2014-05-23loplugin:saloverrideStephan Bergmann
Change-Id: Ie85ffc561de858eedafa062a89e0a9983aa20182
2014-05-23do not store invalid date acceptance patterns in configurationEike Rathke
Change-Id: I78cd8b304db2243fd105d4b13421b6ea0347e042
2014-05-23make this a little less confusingEike Rathke
... and change to a friendlier red for invalid patterns. Change-Id: I19488abd496b144439d7918dc31cfd3f5f4fef92
2014-05-23add default value for Context param in uno::Exception constructorsNoel Grandin
and all it's subtypes, which is almost never used, so this allows us to simplify lots of call sites. Change-Id: I0b05793ea2bdd1027679f63252d42ce4af89433b
2014-05-22Prefer cppu::UnoType<T>::get() to ::getCppuType((T*)0) part19Julien Nabet
Change-Id: Iab50c52a132c90389992ef68c2d31df95a193ab9
2014-05-22finally switch the Western language list box to SvxLanguageComboBoxEike Rathke
Change-Id: Ibf0cb4c0fa951adcd0a7f185d7dd45b06913a40d
2014-05-22handle SvxLanguageComboBox editEike Rathke
Change-Id: Icc2a4829b8a859756ed194f35df214f8bb55c7ae
2014-05-20(related: fdo#62176) Revert "reset min/max values in paragraph ...Michael Stahl
... dialog before setting the actual value" This prevents handling negative first-line indent in Impress, for which it is necessary that the values are set before the limits. This reverts commit 3d7ff1e907713d8ed53a1e193641a2f16de3c38b. Change-Id: I47807d7d49716acab3657de1da64c6e9a99fc44d
2014-05-20enhance pass-by-ref plugin to detect large argumentsNoel Grandin
Detect arguments larger than 64 chars passed by value. Change-Id: I9b0ea9ccb99d115984a26eab67c9cf6afd5f6cae Signed-off-by: Stephan Bergmann <sbergman@redhat.com>
2014-05-19hrc and src files: squeeze multiple newlinesThomas Arnhold
for i in `find . -name *.src -or -name *.hrc`; do FILE=$(cat -s "$i"); echo "$FILE" > "$i"; done Change-Id: I2bac5ad3e1eb3c566e5c867ccf45893a19e1561e
2014-05-19OUString -> OStringStephan Bergmann
Change-Id: Iaf8e63de6bab25cdac9b037a7223675eed88673a
2014-05-19Resolves: fdo#58170 use selected tab page helpid as final fallbackCaolán McNamara
Change-Id: I73a064a40476f685dbf19097115bd48c5cc0f578
2014-05-17Resolves: #i53447# update example view for Draw...Tsutomu Uchino
during the activation of the tab page (cherry picked from commit cda643a4d4c5a32b3d171aaa888d718409b3d5f3) Change-Id: I0b0ca24374050675158b16001f0709846e5ee8f9
2014-05-17Correct common misspellings, and remove some ASCII art along the way.Chris Laplante
Change-Id: I42787db31769e8bde984c5f4f0aa90335e889b1c Reviewed-on: https://gerrit.libreoffice.org/9356 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org>
2014-05-16use SvxLanguageBoxBase* in the general routinesEike Rathke
... so we can switch later to an SvxLanguageComboBox for some. Change-Id: I1a48ee7207a14b2666be09f091c47f09fcbce192
2014-05-15Resolves fdo#70681: fixincludeguards.pl: all that's leftThomas Arnhold
Change-Id: I3e51a62710bb46c8255fd228d41d9300c90a1fb5 Reviewed-on: https://gerrit.libreoffice.org/9360 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
2014-05-11Revert "Resolves: fdo#78217 selected text should be copied in "Replace""Julien Nabet
This reverts commit e4d61b3c556189bf0733ab6e7bedaf975427a35a. See discussion https://bugs.freedesktop.org/show_bug.cgi?id=78217
2014-05-08-Werror,-Wunused-private-fieldStephan Bergmann
Change-Id: Ie01aeb4215998b38bcb171be9d2c1961798b1488
2014-05-08coverity#735403 Logically dead codeCaolán McNamara
Change-Id: I73262dcd37e76bc299929d55e38fea25d2510609
2014-05-08use new VCL IsValueChangedFromSaved methodNoel Grandin
follow to commit ff1a7a59434f5f793d4044aad615bcf78148e963 "RFC: add IsValueChangedFromSaved to VCL button and listbox" Change-Id: If2e6d9e7c18590dc4abbc90362d7897ca2557dd6
2014-05-06WaE: unused variable 'aRect'Tor Lillqvist
Change-Id: I22368254727d1b78337cce42425e27fc7e2588c4
2014-05-06fdo#78321 Bullets and Numbering: SvxNumberingPreview looks uglyThomas Arnhold
Just remove the inner rectangle. Now it looks nice. Change-Id: Icd3d3971292f958d1ffdd3dc6a7697005b5f9047
2014-05-05remove some commented out lines from src filesThomas Arnhold
Change-Id: If872737d2a7db5d9053a256f7e3d57007c24230e
2014-05-05simplify ternary conditions "xxx ? yyy : false"Noel Grandin
Look for code like: xxx ? yyy : false; Which can be simplified to: xxx && yyy Change-Id: Ia33c0e452aa28af3f0658a5382895aaad0246b4d