Kohei Yoshida
e95eb1b221
EditView is no longer a friend of ImpEditEngine.
2012-04-13 23:35:50 -04:00
Kohei Yoshida
ff887e8821
SafeGetObject() no longer needed since GetObject() does the same thing.
2012-04-13 23:35:50 -04:00
Kohei Yoshida
cd967bdb95
UniString to rtl::OUString.
2012-04-13 23:35:50 -04:00
Olivier Hallot
9432c51b35
More RTL_CONSTASCII_USTRINGPARAM removals
2012-04-13 22:22:39 -03:00
Olivier Hallot
301217d708
More RTL_CONSTASCII_USTRINGPARAM removals
2012-04-13 20:47:56 -03:00
Olivier Hallot
2db3ba987f
More RTL_CONSTASCII_USTRINGPARAM removals
2012-04-13 20:47:56 -03:00
Olivier Hallot
4326d0bd27
More RTL_CONSTASCII_USTRINGPARAM removals
2012-04-13 20:47:56 -03:00
Olivier Hallot
5aa0bc7b9a
More RTL_CONSTASCII_USTRINGPARAM removals
2012-04-13 20:47:56 -03:00
Olivier Hallot
4b641686eb
More RTL_CONSTASCII_USTRINGPARAM removals
2012-04-13 20:47:56 -03:00
Olivier Hallot
0b1a0cf3c8
More RTL_CONSTASCII_USTRINGPARAM removals
2012-04-13 20:47:55 -03:00
Olivier Hallot
96f9300af6
More RTL_CONSTASCII_USTRINGPARAM removals
2012-04-13 20:47:55 -03:00
Olivier Hallot
120786aea2
Remove some A2S and C2U macros in sd
2012-04-13 20:47:55 -03:00
Michael Meeks
092a905178
update vcl readme wrt. fpickers
2012-04-14 01:35:00 +02:00
Michael Meeks
5d646f4ba5
i18npool: use URLs for type database in localedata build
2012-04-14 01:35:00 +02:00
Michael Meeks
09524d410b
stoc: accelerate opening of multiple XML .rdb files in a directory
...
Instead of nesting these, we aggregate them into a single non-nested
registry, which saves lots of CPU at startup, sadly we can only do
that for the new-style XML registries, so we have to sniff files,
nevertheless this is still far faster. The merged xml files also
break the XSimpleRegistry::getURL() method - but it appears not
to get called.
2012-04-14 01:34:59 +02:00
Michael Meeks
a871537f32
linkoo: add --copy mode, default to this on windows
2012-04-14 01:34:59 +02:00
Julien Nabet
e00e693d2b
Some cleaning sc (oox)
2012-04-13 23:11:31 +02:00
Julien Nabet
bb5fa57734
Cleaning sc (oox)
2012-04-13 22:58:10 +02:00
Luboš Luňák
adaa6ee5ea
we don't care about what didn't work in dmake version we can't build with
2012-04-13 21:28:01 +02:00
Luboš Luňák
9758b9aaf0
sal_Int32 conversion warning
2012-04-13 21:10:31 +02:00
Luboš Luňák
87e2f7709b
remove unused variables
2012-04-13 21:10:30 +02:00
Luboš Luňák
73be7d0a7b
remove unused variables
2012-04-13 21:10:30 +02:00
Luboš Luňák
c3ff98d54d
put "unused" function into the right #ifdef
2012-04-13 21:10:30 +02:00
Julien Nabet
7b0bf8878b
Cleaning sc module (oox)
2012-04-13 20:07:44 +02:00
Rafael Dominguez
c639aba4a5
Remove deprecated and unused methods.
2012-04-13 18:42:10 +02:00
Rafael Dominguez
236ebc083a
Replace deprecated List for std::vector<rtl::OUString>.
2012-04-13 18:42:10 +02:00
Rafael Dominguez
c295428182
Remove deprecated List in ViewClipboard::InsertSlides.
2012-04-13 18:42:10 +02:00
Rafael Dominguez
8adf70b289
Remove deprecated List for vector in ViewClipboard::GetFirstMasterPage.
2012-04-13 18:42:09 +02:00
Rafael Dominguez
5e0be5bd29
Call size instead of count.
2012-04-13 18:42:09 +02:00
Rafael Dominguez
a35bc3a357
Remove deprecated List usage in Clipboard::CreateSlideTransferable.
2012-04-13 18:42:09 +02:00
Rafael Dominguez
cb5d50619d
Remove deprecated List usage in Clipboard::PasteTransferable.
2012-04-13 18:42:09 +02:00
Rafael Dominguez
b1b309c970
Replace deprecated List for vector in SdTransferable.
2012-04-13 18:42:09 +02:00
Rafael Dominguez
77f8397f98
Overload SdDrawDocument::InsertBookmark to use vector instead of List.
2012-04-13 18:42:08 +02:00
Rafael Dominguez
6a0ca287e9
Replace deprecated List class for std::vector<rtl::OUString>.
2012-04-13 18:42:08 +02:00
Rafael Dominguez
89195fdd25
Replace deprecated List with std::vector<rtl::OUString>.
2012-04-13 18:42:08 +02:00
Rafael Dominguez
de47936fb8
Make some inmutable parameters constant.
2012-04-13 18:42:08 +02:00
Rafael Dominguez
5d8ce0db82
Overload InsertBookmarkAsObject to use std::vector instead of List.
...
This are the hardest ones to port, since the rExchangeList parameter uses
the last position from InsertBookmarkAsPage in InsertBookmarkAsObject, so
the best idea i came up with to avoid doing nasty stuffs was erase procesed
objects in InsertBookmarkAsPage and add an extra parameter to
InsertBookmarkAsObject that recalculates object count when rExchangeList
has items but its manipulated by InsertBookmarkAsPage first like it occurs
in function SdDrawDocument::InsertBookmark.
2012-04-13 18:42:07 +02:00
Rafael Dominguez
a8daf5ff0a
Overload InsertBookmarkAsPage to use std::vector instead of List.
...
This are the hardest ones to port, since the rExchangeList parameter uses
the last position from InsertBookmarkAsPage in InsertBookmarkAsObject, so
the best idea i came up with to avoid doing nasty stuffs was erase procesed
objects in InsertBookmarkAsPage and add an extra parameter to
InsertBookmarkAsObject that recalculates object count when rExchangeList
has items but its manipulated by InsertBookmarkAsPage first like it occurs
in function SdDrawDocument::InsertBookmark.
2012-04-13 18:42:07 +02:00
Michael Stahl
3c854f6d31
WaE: initialization order
2012-04-13 18:31:26 +02:00
Albert Thuswaldner
be7cbf49c4
Moved ScDefaultsOptions from ScDocOptions to separate class
2012-04-13 12:00:17 -04:00
Caolán McNamara
d117d97418
push and pop protectors around runner run, hopefully fixes windows build
2012-04-13 16:48:53 +01:00
Petr Mladek
b0beccb4f6
display LO application in the right desktop submenu (bnc#718694)
...
+ add subcategories to desktop files
+ remove the obsolete X-SuSE-* stuff
2012-04-13 17:26:26 +02:00
David Tardon
1f84379c5b
Revert "re-run bootstrap after make clean"
...
This reverts commit 7c489dc2ec5543c3481d0d5385f3a7a328276cff.
2012-04-13 17:20:56 +02:00
Petr Mladek
fc09ed737c
distro-install-file-lists: handle new file lists that appeared for LO-3.5
...
Process the newly added file lists:
+ Script_Provider_For_Javascript
+ Script_Provider_For_Beanshell
+ PostgresqlSdbc
+ Files_Images
2012-04-13 17:06:11 +02:00
Fridrich Štrba
0d34f0ebca
no need of minizip headers here too
2012-04-13 17:04:37 +02:00
Rafael Dominguez
f46debeed6
Overload lcl_IterateBookmarkPages to use vector instead of List.
2012-04-13 17:02:32 +02:00
Rafael Dominguez
ad50ae4f3c
Remove unneeded headers.
2012-04-13 17:02:32 +02:00
Rafael Dominguez
54388678f5
Refactor SdDrawDocument::IterateBookmarkPages.
...
- Make the function a local function instead of a method.
- Remove base functor class since we only use one type of functor.
- Make lcl_IterateBookmarkPages only dependant on FindDuplicateLayout
functor.
2012-04-13 17:02:31 +02:00
Rafael Dominguez
8fffd99aba
Remove unused InsertBookmarkAsPage_AddBookmarkedPages functor.
2012-04-13 17:02:31 +02:00
Petr Mladek
f6eba1a27a
fix library link order to work with link --as-needed
2012-04-13 16:54:06 +02:00