summaryrefslogtreecommitdiff
path: root/sdext/source/minimizer/informationdialog.cxx
AgeCommit message (Collapse)AuthorFilesLines
2014-10-29remove unnecessary 'using namespace rtl' declarationsNoel Grandin1-1/+0
It turns out that almost none of them were necessary. Change-Id: I1311ed28409c682b57ea8d149bcbaf2c49133e83 Reviewed-on: https://gerrit.libreoffice.org/12133 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
2014-04-30sdext: sal_Bool->boolNoel Grandin1-9/+9
Change-Id: Ib505866047da2cbe0b00d99aa5d7050199b45e1c
2014-02-26cppuhelper: retrofit std::exception into overriding exception specsStephan Bergmann1-2/+2
Change-Id: I56e32131b7991ee9948ce46765632eb823d463b3
2014-02-23Remove unneccessary commentsAlexander Wilms1-7/+7
Change-Id: I939160ae72fecbe3d4a60ce755730bd4c38497fb Reviewed-on: https://gerrit.libreoffice.org/8182 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2013-10-15could not convert from ‘const char*’ to ‘rtl::OUString’Eike Rathke1-39/+39
Since 3eb84bcb4580af50c2ded9f48749384b8455258e which apparently Clang has no problem with. Change-Id: I21af4e20dd116705e53d73a968fde478bff142bb
2013-10-15Simplify TKGet(TK_FOO) -> "FOO"Stephan Bergmann1-42/+42
Change-Id: I06e3134aeef27f13969f6d9d7d81b916bc93e8e2
2013-08-21finish deprecation of O(U)String::valueOf()Luboš Luňák1-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
2013-06-05fix field name, was mxMSF, but should have been named mxContextNoel Grandin1-5/+5
Change-Id: I4661cd84346791ddd6167ccc63335ad63255472f
2013-05-25Revert "fdo#46808, Convert awt::UnoControlDialogModel to new style"Stephan Bergmann1-7/+24
This reverts commit 6c61b20a8d4a6dcac28801cde82a211fb7e30654. As discussed at <http://lists.freedesktop.org/archives/libreoffice/2013-May/052449.html> "Re: fdo#46808, Convert awt::UnoControlDialogModel to new style problem" why the odd change in 2e2a4827ce6708f0e8677dba9cc92e1479a44086 "scripting: get CreateUnoDialog() work again" appears to fix things again: The problem is that the implementation of the css.awt.UnoControlDialogModel involves UNO aggregation (IMPL_CREATE_INSTANCE_WITH_GEOMETRY(UnoControlDialogModel) in toolkit/soruce/helper/registerservices.cxx creating a OGeometryControlModel<UnoControlDialogModel> instance that aggregates a UnoControlDialogModel instance). That means that queryInterface can return a reference to something that is technically a different object, and that's what's happening here, and explains why calling setPropertyValue in two different ways on what logically appears to be a single object can end up calling two different implementations (of two different physical objects). (UNO aggregation is known to be broken and should not be used. Nevertheless, there's still code that does---code that is a horrible mess and hard to clean up.) That all this worked as intended in the past is just sheer luck, but any way of substantially touching it is asking for trouble. I'm going to revert 6c61b20a8d4a6dcac28801cde82a211fb7e30654 again. I wasn't able to revert without also reverting be50ad28f5bbdaeff527f646481ce263843c2401 "fdo#46808, Convert awt::XUnoControlDialog to new style," as the two were tightly dependant. Also reverts all the follow-up fixes cb4b6dde8fda2a5848e11063028bf44d72f85431 "-Werror,-Wuninitialized" (sans the const-ness fix in UpdateHandler::insertControlModel), 697a007c61b9cabceb9767fad87cd5822b300452 "Fix exception specifications," 2ce6828bbbf6ba181bb2276adeec279e74151ef6 "fix awt::UnoControlModelDialog crash," and 2e2a4827ce6708f0e8677dba9cc92e1479a44086 "scripting: get CreateUnoDialog() work again." Conflicts: basctl/source/dlged/dlged.cxx filter/source/t602/t602filter.cxx xmlscript/test/imexp.cxx Change-Id: I5d133468062f3ca36300db52fbd699be1ac72998
2013-05-21fdo#46808, Convert awt::UnoControlDialogModel to new styleNoel Grandin1-24/+7
Change-Id: I4b912034ef3f4855b87d6d6f18ff13bd1ecc8f72
2013-05-14Resolves: #i82852# Presentation Minimizer: missing icon in info dialogAriel Constenla-Haile1-38/+14
(cherry picked from commit 8fd66eeb883676c095c8360ef609e56b9bc055a3) Conflicts: sdext/source/minimizer/informationdialog.cxx sdext/source/minimizer/informationdialog.hxx Change-Id: I8f6ea8edf7c1b95fefa6c280a92030d628339e56
2013-04-07mass removal of rtl:: prefixes for O(U)String*Luboš Luňák1-18/+18
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
2012-10-02re-base on ALv2 code. Includes:Michael Meeks1-23/+14
#i118662# remove berkeleyDB from module l10tools Patch contributed by Oliver-Rainer Wittmann http://svn.apache.org/viewvc?view=revision&revision=1213189 reportdesign: remove extra items from Help menu Patch contributed by Ariel Constenla-Haile http://svn.apache.org/viewvc?view=revision&revision=1201215
2012-08-27fdo#46808, Adapt TempFile UNO service to new styleNoel Grandin1-4/+5
Change-Id: Ia448d6d74201e2be487c6d8317f94be3745808aa
2012-06-06fdo#46808, Adapt UNO services to new style, Part 7, updating ::createNoel Grandin1-13/+10
Update code to use factory method URLTransformer::create Change-Id: I3fd2e838497bcfd8fc949615c0e7d60a6ea47118 Signed-off-by: Stephan Bergmann <sbergman@redhat.com>, added some tweaks.
2012-06-05Remove bogus dependency of extension on comphelperStephan Bergmann1-2/+1
Change-Id: I2a0d4bc968b9b1d285006f26603da4a98fbd870b
2012-06-04fdo#46808, Adapt UNO services to new style, Part 7, updating ::createNoel Grandin1-2/+3
Update calls to factories to use new ::create methods Change-Id: I01d4417820f52718836c92faf3c2fae0dc96b30d Signed-off-by: Stephan Bergmann <sbergman@redhat.com>, added some tweaks.
2012-06-02targeted string re-workNorbert Thiebaud1-14/+14
Change-Id: Ibf22ef6338795256d5b8947e4a9d7ff2c35a7a4d
2012-04-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi1-1/+1
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\)) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
2012-02-28Avoid temporary rtl::OUStringTakeshi Abe1-4/+4
in scripting / sdext / starmath / stoc / svtools / svx
2012-01-10Fix for fdo43460 Part XXXII getLength() to isEmpty()Olivier Hallot1-5/+5
Part XXXII Modules sdext
2011-11-27remove include of pch header from sdextNorbert Thiebaud1-2/+0
2010-12-08RTL_CONSTASCII_USTRINGPARAM in extensions 2Gert Faller1-2/+2
2010-12-06Fix Trianry IssuesJoseph Powers1-1/+2
They where giving me an error stating that the two sides where of different types. Informationdialog: I just changed it back to the old ones. optimizerdialg: I removed the HC icon reference (I thought we'd kill all of these before).
2010-12-06RTL_CONSTASCII_USTRINGPARAM in extensions 1Gert Faller1-9/+9
2010-12-03more Sal n elementsKenneth Venken1-5/+6
2010-10-13Add vim/emacs modelines to all source filesSebastian Spaeth1-0/+3
Fixes #fdo30794 Based on bin/add-modelines script (originally posted in mail 1286706307.1871.1399280959@webmail.messagingengine.com) Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
2010-09-06impress199: #i114275# unbranding presentation minimizer extensionsj1-6/+1
2010-02-12changefileheader2: #i109125#: change source file copyright notice from Sun ↵Jens-Heiner Rechtien1-5/+1
Microsystems to Oracle; remove CVS style keywords (RCSfile, Revision)
2008-08-29#i10000# Missing precompiled header directive added.Rüdiger Timm1-1/+5
2008-07-17INTEGRATION: CWS extensionupdate03 (1.7.42); FILE MERGEDIvo Hinkelmann1-3/+3
2008/07/16 13:28:36 sj 1.7.42.1: #90903# fixed problem with placeholder in dialog title
2008-04-10INTEGRATION: CWS changefileheader (1.6.26); FILE MERGEDRüdiger Timm1-35/+18
2008/04/01 15:36:52 thb 1.6.26.3: #i85898# Stripping all external header guards 2008/04/01 12:39:51 thb 1.6.26.2: #i85898# Stripping all external header guards 2008/03/31 13:59:44 rt 1.6.26.1: #i87441# Change license header to LPGL v3.
2007-10-29#100000# initialize variablesVladimir Glazounov1-3/+3
2007-09-28now using displaying filename in a human readable formSven Jacobi1-4/+10
2007-08-16storing setting if newly created document should be opened to configurationSven Jacobi1-5/+5
2007-05-24some minor changesSven Jacobi1-43/+84
2007-05-22minor changes, added access to standard control icons, some string changesSven Jacobi1-13/+69
2007-05-11initial versionSven Jacobi1-0/+327