Age | Commit message (Collapse) | Author |
|
except moving 'class SfxStringItem' to cui/source/inc/acccfg.hxx
Change-Id: I11d3803ebcfa02658d376bacf28b3d6030ee9d1b
|
|
|
|
|
|
Change-Id: I14cab3dfd26ac1568feef902b566873cecf049b9
|
|
|
|
|
|
and use it in sdext/CppunitTest_pdfimport.mk, which could fail
previously in a parallel build.
Change-Id: I3f251c945f5841c277a71a19fd411ecd77dec3b5
|
|
This is not really necessary, but consistent.
Change-Id: Ic0249efac26c9977ede7ef591d517cc03542b002
|
|
The sdext extensions contain the .lib link stub instead of DLLs;
add gb_Extension_add_library to get the correct DLL filename on Windows,
and use it in presenter screen, presentation minimizer and
PDF import extensions.
Change-Id: Ie8113a6002f9038e4df798edc255208977ba9497
|
|
Change-Id: I2d3120a173097208bd29eb52ab3dea3af870f6ae
|
|
Change-Id: I8018d9b5fa01d1720c0392dc5fdc4a0656f25a35
|
|
Change-Id: I6c145e984c885c7e06caa1c27bfb354ea49ad9ce
|
|
Change-Id: Ice06e639213aeb6f7f23cbf4634947dd25613db1
|
|
Change-Id: Icc164be408224b468dbeff6b422d172f3b70c202
|
|
The vector::back() does not return a value but a reference, hence this
is invalid.
Change-Id: I8624b649deb8fb4de0d1d8af1288068acc80cef2
|
|
Change-Id: I6c550bace0f085630116c86fa19fd0562a10951f
|
|
Change-Id: Iebc7d58ad50777476d1ae69958ad90a8b86ed5d8
|
|
Update code to use factory method URLTransformer::create
Change-Id: I3fd2e838497bcfd8fc949615c0e7d60a6ea47118
Signed-off-by: Stephan Bergmann <sbergman@redhat.com>, added some tweaks.
|
|
Change-Id: I2a0d4bc968b9b1d285006f26603da4a98fbd870b
|
|
Update calls to factories to use new ::create methods
Change-Id: I01d4417820f52718836c92faf3c2fae0dc96b30d
Signed-off-by: Stephan Bergmann <sbergman@redhat.com>, added some tweaks.
|
|
Change-Id: I88cdf9d4c3faab75a80ff72e4268748296a09e50
|
|
Change-Id: Ibf22ef6338795256d5b8947e4a9d7ff2c35a7a4d
|
|
Change-Id: I890dfe9fbd7b5a850daaa0d2b4d5040a5ddbefd7
|
|
Change-Id: I9400ca0a704cfdeb7f333be704ec5690bedcf0c6
|
|
Change-Id: I8848d0e687c3b19be1a8bc1f41c2a0c94e13bbbf
|
|
Change-Id: Ia8e3b59b4c158368d85ba52852c26c578017d10a
|
|
Change-Id: I241be2704a069ec1f6be5861084039569673cc12
|
|
Change-Id: Ic30cdeffabec1eb1a6c153ac450a3d28064ef534
|
|
Change-Id: I7c3409ac39e690fcf2f7e4085bf6857e6bd182fb
|
|
Change-Id: I7cae514cfd3c51bde5e8e0df2c51bed23904569d
|
|
Change-Id: I5a254459a491b9547530d8e312260dceed21f25c
|
|
Change-Id: I962aeac0c7feeabb7963016d5afcfeca5a48ccfe
|
|
When one take look on what the code did:
name = nameA;
origName = nameA;
GooString *getOrigName() { return origName; }
GooString *getName() { return name; }
This code is used even with poppler 10 which was branched 4 years ago.
So simply do not bother with this code at all.
Change-Id: Iba877e765fb763878f5ccd3e1fa62c29cadc9085
|
|
Do not call gfxFont->getName() twice; Thanks David Tardon for catching this.
Heh, I wonder if gfxFont->getOrigName() ever given any different value
than getName() ;-)
Change-Id: Idaf95a6a024076c6d450519923b6129166a5f8bd
|
|
Modification introduced in
http://cgit.freedesktop.org/poppler/poppler/commit/?id=c0affb1845c339f89ca67608cb9fd9134ff902f5
Signed-off-by: Ionut Biru <ibiru@archlinux.org>
|
|
Change-Id: I18d2fda46d3a6427b1691c1ff7838097bb25d0ec
|
|
Variables should have module name as prefix to prevent collisions.
|
|
|
|
this removes dmake completely out of the build for migrated modules
build.pl now assumes modules to be gbuild, unless there is a
prj/dmake file
Change-Id: I674a036b182ee13c5ec093e83cb3d38133112d3b
|
|
...otherwise, if they are bundled, their per-user data is not regenerated, leading
to inconsitencies.
|
|
|
|
regression from 5dd4f9ecb2f50cf76b44472e4438297b6c65184c
The change:
- if(m_GlyphsList.size()>1)
+ if(!m_GlyphsList.empty())
is incorrect, so change it back.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|