summaryrefslogtreecommitdiffstats
path: root/uui
Commit message (Collapse)AuthorAgeFilesLines
* Use anonymous namespace for UUIInteractionHandler.Matúš Kukan2014-02-052-84/+60
| | | | | | | After it's no longer used in uui_component_getFactory, since fe537786a42abea57551395f73328db48bebd086 Change-Id: I27f77b88c898f665d481931a55f1a0c1fce15818
* uui: Ctor feature for com.sun.star.comp.uui.UUIInteractionHandler.Matúš Kukan2014-02-054-65/+17
| | | | Change-Id: I94858cef5402e88ddcc3e0e9e4383f7be8443e77
* bool improvementsStephan Bergmann2014-01-284-9/+9
| | | | Change-Id: I266d7ce86a30cedd1ae388a69b87f1b43d96e00c
* coverity#704132 Operands don't affect resultCaolán McNamara2014-01-271-3/+3
| | | | Change-Id: Ib2cf15d31231ff02645faae9d4a984112e5af795
* Resolves: #i123744# correct consideration of Subject Alternative Name...Oliver-Rainer Wittmann2014-01-221-2/+3
| | | | | | | | field of the given certificate (cherry picked from commit 117218483797c0aeedef9b68bdae96a727cb3426) Change-Id: I81fbb49593b15edea2509aed81b252c8e5b0cd82
* bool improvementsStephan Bergmann2014-01-221-1/+1
| | | | Change-Id: I6df7ec9669452a025fbac55199927347ef84c6b9
* convert login dialog to .uiCaolán McNamara2013-12-239-475/+444
| | | | Change-Id: I775c87422f05552b7283f9c6f7103a72262f764e
* convert unknown authority dialog to .uiCaolán McNamara2013-12-228-184/+180
| | | | Change-Id: Iec8a8826188c81ff3a0e7e563d1f5f1a9921c180
* remove unused m_pParent members and trailings semicolonsCaolán McNamara2013-12-214-12/+4
| | | | Change-Id: I9c577b074ac3fc5382cea92394adeedbe0364de0
* convert ssl warning dialog to .uiCaolán McNamara2013-12-219-212/+113
| | | | Change-Id: I658cc3f1c63f8cfb18463befa3a0efbd92139659
* typo fixesAndras Timar2013-12-201-2/+2
| | | | Change-Id: Ia5f104bfd707bcf4e159c78ca2764c861fb0b6d9
* Adapt all (non-extension, SharedLibrary) .components to environment="..."Stephan Bergmann2013-12-171-2/+2
| | | | Change-Id: I56f38bd786f3a026cb2908f28540dc9c4003af83
* Remove unnecessary use of OUString constructor in + expressionsNoel Grandin2013-12-171-1/+1
| | | | | | | | | Convert code like aFilename = OUString::number(nFilePostfixCount) + OUString(".bmp"); to aFilename = OUString::number(nFilePostfixCount) + ".bmp"; Change-Id: I03f513ad1c8ec8846b2afbdc67ab12525ed07e50
* uiconfig is a l10n-relevant targetBjoern Michaelsen2013-12-161-1/+1
| | | | Change-Id: I8a2ca73c02fd6b04ce60e7701c51d2362ef7ec06
* Fix some typos for "height"Julien Nabet2013-11-251-15/+15
| | | | Change-Id: Ibe1fdd7a63ff09097cfe053279d779592d389539
* remove unnecessary use of OUString constructor when assigningNoel Grandin2013-11-191-1/+1
| | | | | | | | | change code like aStr = OUString("xxxx"); to aStr = "xxxx"; Change-Id: Ib981a5cc735677ec5dba76ef9279a107d22e99d4
* make l10n buildable separatelyBjoern Michaelsen2013-11-141-1/+4
| | | | | | | | | | | | | | | | | | | | | - this renames the 'almost' module target to non-l10n - and adds a l10n target which is intended to only build l10n parts of the product - packagers should then be able to build l10n and non-l10n parts of the product independently, thus: - enable quicker rebuilds - distribution of load - updates to l10n without a full rebuild - security fixes to binaries without rebuilding all l10n - the new targets are called build-l10n-only and build-non-l10n-only - note this is not intended to move a concept of split packages upstream -- while this exsists in distros, the number of test scenarios for this would explode upstream Change-Id: Ib8ccc9bc52718d9b0ebbfee76ad93dc29c260863 Conflicts: filter/Module_filter.mk
* remove unnecessary sal_Unicode casts in various placesNoel Grandin2013-11-142-2/+2
| | | | Change-Id: Ibf04062ca86ed866202d748c3b62a210d30ed6ec
* convert OUString compareToAscii == 0 to equalsAsciiNoel Grandin2013-11-113-4/+4
| | | | | | | | | | Convert code like aStr.compareToAscii("XXX") == 0 to aStr.equalsAscii("XXX") which is both easier to read and faster. Change-Id: I448abf58f2fa0e7715dba53f8e8825ca0587c83f
* Convert code that calls OUString::getStr()[] to use the [] operatorNoel Grandin2013-11-041-3/+2
| | | | | | This also means that this code now gets bounds checked in debug builds. Change-Id: Id777f85eaee6a737bbcb84625e6e110abe0e0f27
* Convert indexOf->startsWith and lastIndexOf->endsWithNoel Grandin2013-10-311-3/+3
| | | | | | | | | | | | | | | | | | | | | | This is both an optimisation and a cleanup. This converts code like aStr.indexOf("XX") == 0 to aStr.startsWith("XX") and converts code like aStr.lastIndexOf("XXX") == aStr.getLength() - 3 to aStr.endsWith("XXX") Note that in general aStr.lastIndexOf("X") == aStr.getLength() - 1 converts to aStr.isEmpty() || aStr.endsWith("X") so I used the surrounding context to determine if aStr could be empty when modifying the code. Change-Id: I22cb8ca7c2a4d0288b001f72adb27fd63af87669
* windows: warning 4355 is disabled globally in com_MSC_defs.mkThomas Arnhold2013-10-281-4/+0
| | | | | | So there is no need to do this locally, too. Change-Id: I0fa1d0cd3e077ba0985848a9d2cbb061b123e8ad
* Bin comments that claim to say why some header is includedTor Lillqvist2013-10-223-10/+10
| | | | | | They are practically always useless, often misleading or obsolete. Change-Id: I2d32182a31349c9fb3b982498fd22d93e84c0c0c
* drop unnecessary tools/string includesCaolán McNamara2013-10-202-2/+1
| | | | Change-Id: I4278999b9b7d184c26036bbe9e3b98420f461e8c
* fdo#54938: Adapt supportsService implementations to cppu::supportsServiceMarcos Paulo de Souza2013-10-073-20/+6
| | | | | | | Change-Id: I683c0d30c3286ed5d725d4eefe8b3977b82ee316 Reviewed-on: https://gerrit.libreoffice.org/6035 Reviewed-by: Stephan Bergmann <sbergman@redhat.com> Tested-by: Stephan Bergmann <sbergman@redhat.com>
* convert UUI module from String to OUStringNoel Grandin2013-10-0120-100/+105
| | | | Change-Id: I0dfcdb0b95112b5ee18b05d0c496059292be65c4
* typo fixes in commentsAndras Timar2013-09-261-2/+2
| | | | Change-Id: Iaadec33715f8e0e0c6595c5e684606905274fdab
* Related: fdo#38838 drop String::EmptyString now as wellCaolán McNamara2013-09-082-2/+2
| | | | Change-Id: I849dbf3a40189e700036249b15dd8bde493083b6
* finish deprecation of O(U)String::valueOf()Luboš Luňák2013-08-211-1/+1
| | | | | | | Compiler plugin to replace with matching number(), boolean() or OUString ctor, ran it, few manual tweaks, mark as really deprecated. Change-Id: I4a79bdbcf4c460d21e73b635d2bd3725c22876b2
* osl_getThreadIdentifier(0) -> osl::Thread::getCurrentIdentifier()Stephan Bergmann2013-08-211-2/+3
| | | | Change-Id: Ida9785c4b9fda0459769957734952e69d7a9de44
* Use subfolder names from <config_folders.h>Tor Lillqvist2013-08-181-1/+7
| | | | | | | | Change all instances of hardcoded "program", "share" etc subfolder names to use those from <config_folders.h> instead. In normal builds, the end result will not change. Change-Id: I91c95cd8e482818be67307e889ae6df887763f53
* Fix configuration access path for "URL" group memberStephan Bergmann2013-07-251-2/+3
| | | | | | | | | | ...broken with 20430c74f391ceffd8a063c0b6b8a8fd615abac0 "fdo#46037: no more comphelper/configurationhelper.hxx in uui" (but note that NewerVersionWarningDialog is dead code anyway since 718c0fe73251be083d032f0905880058128d4054 "Ported sfx2-remove-check-update-on-fileload.diff from ooo-build." Change-Id: I7095044b73888aad12704d76a39551158e6c6b33
* fdo#46037: no more comphelper/configurationhelper.hxx in uuiJulien Nabet2013-07-242-8/+7
| | | | | | | Change-Id: Ie7f42eb02f38d5cac2eff7b434ca369ea28b4ed1 Reviewed-on: https://gerrit.libreoffice.org/5065 Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org> Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
* module svl: all String and some bool and related clean-upNorbert Thiebaud2013-07-071-3/+2
| | | | | | | Change-Id: I36eb559fa58dbe75384b7119c788af0048813aed Reviewed-on: https://gerrit.libreoffice.org/4733 Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com> Tested-by: Norbert Thiebaud <nthiebaud@gmail.com>
* Resolves: #i55152# the listbox in the filter selection dialog should be sortedHerbert Dürr2013-07-051-1/+1
| | | | | | (cherry picked from commit 47fc3a3278a7aac0ba2d8f47eb10a83c0a5f40c7) Change-Id: I07215bb62dbedcb2d9baa0fd6d66a3ebe30f540e
* XubString->OUStringCaolán McNamara2013-06-304-7/+7
| | | | Change-Id: I40ff06facc304630ccedd82d2f20b3573bdc5cb4
* remove OUString wrap for string literalsThomas Arnhold2013-06-297-12/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | For some functions and all kinds of Exceptions. CannotConvertException CloseVetoException DisposedException EmptyUndoStackException ErrorCodeIOException Exception GridInvalidDataException GridInvalidModelException IOException IllegalAccessException IllegalArgumentException IllegalTypeException IndexOutOfBoundsException NoMasterException NoSuchElementException NoSupportException PropertyVetoException RuntimeException SAXException ScannerException StorageWrappedTargetException UnsupportedFlavorException VetoException WrappedTargetException ZipIOException throwGenericSQLException throwIllegallArgumentException createInstance createInstanceWithContext forName getByName getPackageManager getPropertyValue getUnpackedValueOrDefault getValueByName hasPropertyByName openKey setName setPropertyValue supportsService bash command: for i in `cat list`; do git grep "$i\s*(\s*OUString(\s*\"" -- '*.[hc]xx' | cut -d ':' -f1 | sort -u | xargs sed -i -e "s/\(\<$i\s*(\)\s*OUString(\s*\(\"[^\")\\]*\"\)\s*)\s*/\1\2/g" -e "s/\($i.*\)\"+ /\1\" + /g"; done Change-Id: Iaf8e641b0abf28c082906014f87a183517630535 Reviewed-on: https://gerrit.libreoffice.org/4624 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
* Related: fdo#65595 password dialog has truncated labelCaolán McNamara2013-06-131-1/+0
| | | | Change-Id: I7b18bebb878fc5027109121595e444ef1d6a7cfc
* remove unused componentcontext.hxx includesNoel Grandin2013-06-051-1/+0
| | | | Change-Id: I598926b72c5540b472f9607e2f3df134a8c50048
* convert message box return types to an enumCaolán McNamara2013-05-012-10/+10
| | | | Change-Id: I20889dc94aac1119c1ee9da873ce911887c1c335
* Move to MPLv2 license headers, with ESC decision and author's permission.Michael Meeks2013-04-303-69/+12
|
* some eco-activismThomas Arnhold2013-04-274-8/+4
| | | | Change-Id: Ib447cd8633c3102ee78c919cfbeabcc88018b130
* gbuild: drop empty use_packages callsDavid Tardon2013-04-241-3/+0
| | | | | | | Change-Id: I8e9f70eb5d929c98b4379416c2259a74e31d587f Reviewed-on: https://gerrit.libreoffice.org/3503 Reviewed-by: David Tardon <dtardon@redhat.com> Tested-by: David Tardon <dtardon@redhat.com>
* gbuild: drop uses of removed packagesDavid Tardon2013-04-241-3/+0
| | | | | | | Change-Id: I400fad08c0ae7b6b34bad63693f54856867e4dac Reviewed-on: https://gerrit.libreoffice.org/3502 Reviewed-by: David Tardon <dtardon@redhat.com> Tested-by: David Tardon <dtardon@redhat.com>
* fdo#63154: Change Min/Max/Abs for std::min/max/absMarcos Paulo de Souza2013-04-201-4/+4
| | | | | | | | | Now all these usages were removed from LO. Change-Id: I8a7233db20abdcdbb18428ad4004c78cc516a0e6 Reviewed-on: https://gerrit.libreoffice.org/3326 Reviewed-by: David Tardon <dtardon@redhat.com> Tested-by: David Tardon <dtardon@redhat.com>
* fdo#60724 correct spellingThomas Arnhold2013-04-151-1/+1
| | | | Change-Id: Ieb653adbd0cb4371ec5db57e70bcc551872f647f
* fdo#60724 correct spellingThomas Arnhold2013-04-151-1/+1
| | | | Change-Id: I7318a9f4f3410edf4dbe67bf08f31682fcb4edc7
* rename UI to UIConfigDavid Tardon2013-04-112-3/+3
| | | | | | | | | | I plan to use it to deliver all */uiconfig files, not just .ui, as a preliminary step to get rid of postprocess/packconfig. Change-Id: Ie7b4434b2f247165e3ab69a4d0c193418720a149 Reviewed-on: https://gerrit.libreoffice.org/3225 Reviewed-by: David Tardon <dtardon@redhat.com> Tested-by: David Tardon <dtardon@redhat.com>
* mass removal of rtl:: prefixes for O(U)String*Luboš Luňák2013-04-0728-234/+233
| | | | | | | | Modules sal, salhelper, cppu, cppuhelper, codemaker (selectively) and odk have kept them, in order not to break external API (the automatic using declaration is LO-internal). Change-Id: I588fc9e0c45b914f824f91c0376980621d730f09
* new module i18nlangtagEike Rathke2013-04-051-1/+1
| | | | | | | | | | | Moved portions from module i18npool, all of former i18nisolang1 library that now is i18nlangtag. Included are languagetag, isolang and mslangid. This i18nlangtag code is now even used by module comphelper, so disentangling i18npool and making this an own module was needed to not create circular module dependencies. Change-Id: Ib887c3d6dde667403fd22d382310ba5f1a9b0015