summaryrefslogtreecommitdiff
path: root/sd
AgeCommit message (Collapse)Author
2013-01-10fix Search->indexOf conversionIvan Timofeev
Change-Id: I2b02b62311c00fc47892ea7e24d8bc01ac4fb149
2013-01-10valueOf sal_uInt16 -> valueOf sal_Int32Ivan Timofeev
Change-Id: Ibd92f5ebe3079dd0b75a0f429efc68842a4305ec
2013-01-09lame_OUString_valueOf_sal_Int32_casts += 2;Michael Meeks
2013-01-09Some removal/replacement of the String/UniString with OUStringJean-Noël Rouvignac
2013-01-08DynamicErrorInfo objects must be allocated on the heapStephan Bergmann
cf. "delete pInfo;" in ErrorHandler::HandleError_Impl (tools/source/ref/errinf.cxx). This reverts the remaining (non UNO related) changes from e48d47469508dee55ae6abcb3988222b5612e1e9 "fix some memory leaks in sc" and 5ea7e74c29f7279b6c31d38185ace576f68f4fb2 "fix some memory leaks in sd" that had not already been reverted. Whether any of these instantiations are really leaked (i.e., never deleted again in calls to ErrorHandler::HandleError_Impl) is unclear to me, but that would need to be fixed in a different way. Change-Id: I6d9e7a2f6fce6d6a4d5d390c09a5a12f593028a6
2013-01-08WaE: struct 'Size' was previously declared as a classTor Lillqvist
2013-01-07Cleanup: #include <tools/gen.hxx>Matteo Casalin
Change-Id: Ic547b4a59102afc8bdbc85ec95ac312e32ef2530 Reviewed-on: https://gerrit.libreoffice.org/1484 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
2013-01-07Revert "Clang doesn't like that ToolPanelFactory::~ToolPanelFactory() is ↵Stephan Bergmann
protected" This reverts commit 504b6f0cec5cad01a64e723434d636bfb867ecfa, which was a workaround for broken 5ea7e74c29f7279b6c31d38185ace576f68f4fb2 "fix some memory leaks in sd" now fixed with 5ea6f6d400e59e037032fb3091c3f6880b562ce9 "UNO objects must be allocated on the heap."
2013-01-07UNO objects must be allocated on the heapStephan Bergmann
This was a regression introduced with 5ea7e74c29f7279b6c31d38185ace576f68f4fb2 "fix some memory leaks in sd." Change-Id: Ibcb2527b396886a5a904d8843c8560765ed859f5
2013-01-07Clang doesn't like that ToolPanelFactory::~ToolPanelFactory() is protectedTor Lillqvist
Change-Id: If7ab2dade60f5de62cfbea6d1d021a30e8a60f57
2013-01-07fix some memory leaks in sdMarkus Mohrhard
Change-Id: I7c7d0772a3d10601c6d1a9ea22c697abe762036d
2013-01-04Make LO buildable again after the GraphicFilter move.Jan Holesovsky
Change-Id: I3455a7294b136400f32163626d5a7a7f2bfa898c
2013-01-03Avoid unnecessary operations on an OUStringMatteo Casalin
Change-Id: I1820711664a6aa18587e1e4a3d74a8e4cbfcc07e Reviewed-on: https://gerrit.libreoffice.org/1537 Reviewed-by: Luboš Luňák <l.lunak@suse.cz> Tested-by: Luboš Luňák <l.lunak@suse.cz>
2013-01-03Remove unneeded 'else' and fix 'else if' styleMatteo Casalin
Change-Id: I774af9ca0631e931ddc8c5025981dabca557e325
2013-01-01remove use of #pragma optimizeLuboš Luňák
All these are years old, guessing from some comments as old as Windows 9x support. These workarounds do not seem to be needed now. Change-Id: If67baa5cdefcec33b28696c764b1ed96143b7ccd
2013-01-01WaE: private field 'mPreviouslyDiscoverable' is not usedTor Lillqvist
Change-Id: Ib3f16646035fe29aa64608a17f1a3063f9ebde95
2012-12-28Remove useless lineJulien Nabet
Cf http://nabble.documentfoundation.org/Cppcheck-reports-an-assignment-which-isn-t-used-in-sd-source-ui-func-fupage-cxx-td4026217.html Change-Id: I0061cbec5a92ac0499eb6c80d6ffe13862aad03a
2012-12-27Fix 'PropEntry::operator=' should return 'PropEntry &'Julien Nabet
Change-Id: Id9a772771fe1f1694d1e247c20447461175495ff
2012-12-27remove no longer needed hackLuboš Luňák
2012-12-26ignore #include inside #ifLubos Lunak
2012-12-25Get rid of (most uses of) GUITor Lillqvist
GUI only takes values UNX or WNT, so it is fairly pointless. One can check whether OS is WNT or not instead. Change-Id: I78ae32c03536a496a563e5deeb0fca78aebf9c34 Reviewed-on: https://gerrit.libreoffice.org/1304 Reviewed-by: Peter Foley <pefoley2@verizon.net> Tested-by: Peter Foley <pefoley2@verizon.net>
2012-12-25WaE: unreferenced local variableTor Lillqvist
Change-Id: I3a1eff09724ec79ebc87360e37ccb412b7173a59
2012-12-24Some cppcheck cleaning in sdJulien Nabet
Change-Id: I48b86bf206808e1d19343622b640c80b61b40a48
2012-12-21ugly workaround for msvc+ccache problem with gbuild MSC defineLuboš Luňák
Change-Id: I06ab10df77e2b3598f7268173206429596a50217
2012-12-21fdo#46808, Convert frame::Desktop to new style service.Noel Grandin
I had to drop XEventBroadcaster from the merged interface because it introduced method name conflicts (addEventListener). Shouldn't be an issue since it was scheduled to be dropped anyhow, and the service implementation still implements it, so existing clients will be fine. I dropped the interface XPropertySet from the combined IDL because nobody seems to be using it, and it's primary purpose appears to be to set weird flags. I dropped the optional interfaces XStatusIndicatorFactory XDispatchInformationProvider from the combined IDL because the service does not implement them, and nobody seems to be using them. I suspect they were mistakenly copied from XFrame. I also did not convert the Title, UserDefinedAttributes and LayoutManager properties to attributes, again because no-one is using them. Change-Id: I678a00006ed2cca2d6c37c4e39465811442c33af
2012-12-20Templates Manager: removed the old dialogs and menu entriesCédric Bosdonnat
Change-Id: I5aa9dd8c0bfb95c26bca14962f60041e892ea2ea
2012-12-19regenerate pchPeter Foley
Change-Id: I4e18ce06db42e13479809ba8eec70033943271cf
2012-12-19fdo#58129 fix ppt export of paragraphsDavid Tardon
Change-Id: I8784c7a84e7f1d3173b6e134377e9232906d77ba
2012-12-18fdo#49277 use correct default tab sizeDavid Tardon
Change-Id: If8e1936b897bfe0f3ae0d791c573267df3381954
2012-12-18DiscoveryService: include errno.hMichael Stahl
Change-Id: I8bf8ce8324e6ebe89dca1c58f02d973b8998ff2a
2012-12-18DiscoveryService: -Werror=unused-but-set-variableMichael Stahl
Change-Id: If0175642ebcbe1f4f6cc7640d87385c96e097180
2012-12-18Store some (sadly ignored) return values in variables to make debugging ↵Tor Lillqvist
easier...
2012-12-15Revert "define must be overridden on cmdline"Peter Foley
This reverts commit 0743ccea543dfcad5c4875b943330fd894a5132a. This seems to be unnecessary and generates a lot of warning spam. Conflicts: sd/source/ui/remotecontrol/BluetoothServer.cxx Change-Id: Ib0cda3ca560a5ddc4ba86d5a0c80774a992d7296
2012-12-14Correct the function names in two SAL_INFOsTor Lillqvist
2012-12-13Some cppcheck cleaningJulien Nabet
Change-Id: Iaa53d523436d36483b901a913c2c66edbb451f6c
2012-12-13PCH for Library_sdLuboš Luňák
2012-12-13fdo#46808, remove awt::DisplayAccess service.Noel Grandin
This service was never documented in an IDL file. All it did was provide a wrapper around some VCL module API. Now that we can link the VCL stuff into SD and SDEXT, just access the API directly. Change-Id: Ic0ba34c2bca797baa7319878d98cfe3a4ec59d4d
2012-12-10Replacing '__LOADONCALLAPI' with 'SAL_CALL' definitionChristos Strubulis
Change-Id: I692a9cfdca5ad50170eea2178a6aa87e8154b951
2012-12-10- correct variable-namesRob Snelders
Change-Id: I2c0106d18586201f8c0fa444652ecefb493d61bf Reviewed-on: https://gerrit.libreoffice.org/1267 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2012-12-10callcatcher: remove unused rtf filter and associated methodsCaolán McNamara
update and remove newly unused code, mostly original rtf filter Change-Id: I2dd302851ee6fad62d79fbc81cb8a61a861396db
2012-12-10fdo#46808, use service constructor for embed::StorageFactoryNoel Grandin
Change-Id: I26cd1cf86118122f392f16801a646df753a7df26
2012-12-09Reformat code in PreviewRenderer.Tomaž Vajngerl
Change-Id: Ia17c14a0bf3908fb9201996b64b5c1059ada3205
2012-12-09Compress graphics dialog converted to new widget layout.Tomaž Vajngerl
Change-Id: Iff1ffba10c5aaf3d438acf0a69467a0ac9e0f7cf
2012-12-07an app can have print options without a print options dialogCaolán McNamara
e.g. draw and impress have print options, but no print options dialog (It's plausible that we should merge the print options in the print dialog with the print options in the options... dialog of the printer settings dialog) Change-Id: I25c029ad8ba482b1e8d8d5974cc8de99584b9a55
2012-12-06Fix: <errno.h> needs to be included under LinuxNoel Grandin
Change-Id: I00cbeaa3d00b6001b1b9adf00059f27d7affb08f
2012-12-06Fix Linux-specific codeStephan Bergmann
Change-Id: I36971b78dcc2fb0ab8570c8b80feb51bf6043e54
2012-12-06MinGW: Fix BluetoothServer build.Jan Holesovsky
Change-Id: Ie04d3c1703bcf22b746d1ee965f9ff3155a9ffeb
2012-12-05define must be overridden on cmdlinePeter Foley
Change-Id: If85a60d9db69ab96c8a77b7715fc2a51fcd7ba51
2012-12-05warning C4702: unreachable codeStephan Bergmann
Change-Id: I93b5a0c938b8c0bdf69a03aea0f1aa6bac9fc414
2012-12-05warning C4100: 'aDiscoverable' : unreferenced formal parameterStephan Bergmann
Change-Id: I7bb5e40e8da943926f7fd8b1f76e010d073362c9