summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2014-12-03vcl: Add reference on default window's context so it doesn't get destroyedLouis-Francis Ratté-Boulianne2-0/+14
Change-Id: Ifce8903ce75b1d2ff6acfd717c689f8893d80802
2014-12-03vcl: Release the OpenGL context for offscreen rendering after each operationLouis-Francis Ratté-Boulianne1-0/+5
Change-Id: If253a4c0a1f64b1cc54e0079d4455abf39620ac0
2014-12-03vcl: Don't create new contexts for Virtual Devices on WindowsLouis-Francis Ratté-Boulianne8-47/+11
Change-Id: I561a8142f986aca89e796ce2c4a0902fae41f9e6
2014-12-03fdo#83939: Set error code if signing failedTor Lillqvist1-2/+14
Change-Id: I45f1077c744e20a369a73bf0b83c8dba04ddcda7
2014-12-03fdo#83939: Add new error code for failed PDF signing, and handle itTor Lillqvist4-1/+25
Change-Id: Ide6dc06d33faea795272d9d32fc028ac8d023c5a
2014-12-03fdo#83939: Check return value from pPDFWriter->Emit()Tor Lillqvist1-1/+1
Change-Id: Id492b1b6b9d534276c155b1e46953d098ce8b969
2014-12-03editeng: let's assert attribute consistency in some more placesMichael Stahl2-2/+54
Change-Id: Idf3a1eb821b3b938f1bdd04bf449ade190703ab3
2014-12-03editeng: it's like there's a nest of these thingsMichael Stahl3-15/+14
Change-Id: Iceef908e8cc1e7a2849398bd2d9e6e7cb1a9e9c9
2014-12-03editeng: there's yet another checking function hidden at dbglevel=3Michael Stahl4-14/+17
Change-Id: Idd54bd4fd87cd138a2daf363bd692440a01e2624
2014-12-03editeng: convert that to assertMichael Stahl2-20/+14
Change-Id: I03e43d35efb813f985b93bc05c3b50c4462f9111
2014-12-03editeng: activate some more assertions hidden behind dbglevel=3Michael Stahl3-11/+12
Change-Id: I46c168946c51f1c8064f5902aa97fb0c5b7a3934
2014-12-03rulers: Let's hide them by default.Jan Holesovsky1-1/+1
2 years ago this was a hot topic on UX-advise :-) - let's see if people are more happy with hiding them by default now. Change-Id: If4946538232c7579f7ce03d4947360645fb4967d
2014-12-03rulers: Make the numbers a bit smaller, and always with odd size.Jan Holesovsky1-0/+14
Change-Id: Id27bb0435d00f2026ff8c82ed246ca67947e9e42
2014-12-03Make the default (non-native) workspace lighter, especially on Windows.Jan Holesovsky2-3/+3
Change-Id: Ie1cc5817a5b75f129791da450105ffee07438900
2014-12-03Related: fdo#78151 only make outline, title and subtitle read-onlyCaolán McNamara1-2/+16
Change-Id: Ic62291a61f6f4c055255f644df5f5e02fe6d0801
2014-12-03No colors anymoreStephan Bergmann1-4/+4
Change-Id: I8335a9fb08c09a95e98bbc8f8727bd2a28332d42
2014-12-03update docs for C++11 iterationBjoern Michaelsen1-6/+2
Change-Id: Iab8b2e3d9e85d715de6ca973fd1c541c837bf6f3
2014-12-03loplugin: cstylecastNoel Grandin5-26/+26
Change-Id: Ic48a59c209e77382a0e431a5502c24a62407334b
2014-12-03loplugin: cstylecastNoel Grandin20-79/+80
Change-Id: I759f55218538c8d39018626f14e78cd56341d44b
2014-12-03fdo#84938 replace BASERR_REASON_ constants -> enumTobias Madl2-26/+28
Change-Id: I80fe0108c2d27b72d2fadc23032cf2b52c3193a6 Reviewed-on: https://gerrit.libreoffice.org/13268 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
2014-12-03fdo#86929: Kill FOREACHPAM_START for goodBjoern Michaelsen1-5/+4
Change-Id: Ibaff13e84f186616259ba9bbf9224bbe2d30c5d6
2014-12-03move size() into the container tooBjoern Michaelsen3-13/+11
Change-Id: I22ee641e7d07fa7c0cae7a4b36ce61dbed62b31f
2014-12-03move container stuff out of sw::Ring<>Bjoern Michaelsen5-48/+60
Change-Id: Idf72c16318735d6b3ef7f421aceacc225a7697bf
2014-12-03Factor out SdrModel::dumpAsXml() from SwDoc::dumpAsXml()Miklos Vajna3-13/+20
Change-Id: Ic2cc6507390edfd0bc5a38b655a3b652fd5ec33e
2014-12-03Add missing include headerDavid Ostrovsky1-0/+1
Change-Id: I59d6f1401cdfc37c0949cc9d439cb7ff52857079 Reviewed-on: https://gerrit.libreoffice.org/13286 Reviewed-by: Stephan Bergmann <sbergman@redhat.com> Tested-by: Stephan Bergmann <sbergman@redhat.com>
2014-12-03Fix "result of 32-bit shift implicitly converted to 64 bits" on WNT x64David Ostrovsky3-5/+5
On Windows x64 long is only 32-bit (while on other x64 platforms it is typically 64-bit), but sal_uLong is not a typedef for unsigned long, but rather for sal_uIntPtr, which in turn is large enough to take recast pointer values (i.e., always 64-bit on 64-bit platforms). sal_uLong was introduced as a "temporary helper type" to ease transition from the old tools/solar.h types ("ULONG" etc.), but in the long run it should be remove from the code base, and places that now use sal_uLong analysed to use more appropriate types. As short term solution, cast to sal_uLong fixes it. Change-Id: I2169b7858517313616007a8fb2acc5c7d0487719 Reviewed-on: https://gerrit.libreoffice.org/13232 Reviewed-by: Stephan Bergmann <sbergman@redhat.com> Tested-by: Stephan Bergmann <sbergman@redhat.com>
2014-12-03Fix Cannot convert unsigned long* in sal_uLong*David Ostrovsky1-1/+1
Change-Id: I7e44ea91f1202d70ddc4f16aed5890f14f2b2f64 Reviewed-on: https://gerrit.libreoffice.org/13287 Reviewed-by: Stephan Bergmann <sbergman@redhat.com> Tested-by: Stephan Bergmann <sbergman@redhat.com>
2014-12-03WITH_JPEG_TURBO redundant with BUILD_TYPE JPEG_TURBOStephan Bergmann3-4/+1
Change-Id: If918b3083fcd8c2e2ea41c43cba53ded1a207196
2014-12-03Redundant WITH_JPEG_TURBO checkStephan Bergmann1-4/+0
...already covered in external/Module_external.mk Change-Id: Ieebb376a7509135c6102ec2c7433a815ec679b6c
2014-12-02Revert "loplugin: cstylecast"Kohei Yoshida20-258/+258
This reverts commit 8dba4716d2e7fcaf00cc347d4989c24539ea0fe6. <:: is not a legal syntax at least with gcc 4.7.
2014-12-03Add a limit for graphic cache based on used integer type to avoid overflowZolnai Tamás2-8/+2
Change-Id: Ibdf2cbf3c50f6732301d894d91a1b8ea58e4e5d6
2014-12-02Adapt UAccCOM to X64 platformDavid Ostrovsky10-10/+10
Change-Id: I1fe8bea6c9463314ca0ea18615a48bac28cdda8f Reviewed-on: https://gerrit.libreoffice.org/13227 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
2014-12-02Double blank lines...Kohei Yoshida1-1/+0
Change-Id: I826db178ceea4a409ad9e14ff73b5edaf136e435
2014-12-02Let's not forget to move the comment too.Kohei Yoshida1-2/+4
Change-Id: I86f2107860cf7e014277abdc14307c444142fea6
2014-12-02Put this inside the bulk broadcast scope.Kohei Yoshida1-1/+1
Because setting formula cell dirty may indirectly trigger area broadcast. Change-Id: Id8b500c659119df3637ca9a27481267c140e49d3
2014-12-02Revert "use boost::shared_ptr instead of manual ref counting"Markus Mohrhard4-10/+30
This reverts commit 8eeb02dcc1a4bc99b083b1a591b4a70003a1604f. Conflicts: include/vcl/opengl/OpenGLContext.hxx vcl/inc/openglgdiimpl.hxx vcl/opengl/gdiimpl.cxx Change-Id: I85cc7a46876ffba5ab861f6dd83b07da466b212b
2014-12-02Deprecated com.sun.star.beans is goneStephan Bergmann3-126/+0
Change-Id: Ifce16ea732dd79730bff7bfa6269bd8b1d8e8aa6
2014-12-02Work around -Werror,-Wkeyword-macroStephan Bergmann1-0/+1
...where liblangtag/lt-macros.h does #undef inline because LT_HAVE_INLINE is not defined---liblangtag has a config.h (that would define it), but for whatever reason does not include it... Change-Id: I6a6f0a3522b7aef12573af7d7c4c00bb0f1368eb
2014-12-02Use OSL_LIT/BIGENDIANStephan Bergmann1-10/+2
...one of which is guaranteed to be defined Change-Id: Icb02826f8da03ad0d605ec11f07bf60f30d1a3d0
2014-12-02prefer `if (s)' to `if (nil != s)' for objective-cDouglas Mencken10-67/+67
in objc, explicit comparison with nil isn't necessary and can produce errors like: comparison between distinct pointer types (...) and 'objc_object*' lacks a cast upd: thanks Norbert Thiebaud for suggestion ``hitChild is a Reference so hitChild = nil was !hitChild.is() right?'' Change-Id: I105be50e5a37bb63e360622e590ec4916fa8a84f Reviewed-on: https://gerrit.libreoffice.org/11891 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-12-02fdo#39468 translate German commentsMichael Weghorn1-119/+111
Change-Id: I37b5fe348d5e3f54d505b04951761b52ff13bd26 Reviewed-on: https://gerrit.libreoffice.org/13280 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-12-02Reduce scope level.Kohei Yoshida1-19/+20
Change-Id: Icfa4a81ebab1df943a71869fb8fc6409a8927464
2014-12-02unit test for sort with broadcasters, fdo#86762Eike Rathke2-0/+217
Change-Id: Id1040f95a94d1637cafd06cbe0072b5a5a5cb8e0
2014-12-02Remove unused header includes from public header.Kohei Yoshida3-3/+4
Change-Id: Ie9d42f15e2881f1f4bb78147d0250a174d9542c1
2014-12-02Add a few questions as commentsTor Lillqvist1-0/+4
Change-Id: I7bc2a725bbcc215a40a3c20567aaa1c1187c3b34
2014-12-02error C3861: 'localtime': identifier not foundMiklos Vajna1-0/+20
Change-Id: I2c805be63bb246106c9302404ef873528d759eec
2014-12-02Only call super-expensive Invalidate on scrollbar togglingCaolán McNamara1-2/+3
otherwise even using backspace in an annotated area will cause super slow behaviour as each keystroke causes a full page render This became a problem after commit 0761f81643a6890457e9ef7d913ab5c88c2593a4 Date: Thu Dec 19 18:50:58 2013 +0000 123792: complete annotations on text ranges feature but underlying problem was always there ready to trigger. For this case only render the full page if the state of comments scrollbars *toggles*, i.e. if there wasn't scrollbars and there ends up still with no scrollbars avoid the (bad) hack of invalidating the page Change-Id: Ic7fd432d2317b0f5ad8d8773636f99fe75d660d6
2014-12-02fix indent on this firstCaolán McNamara1-170/+171
Change-Id: Iaf223e88cf8bf4ebc8de117f024347a984ae476f
2014-12-02add fallback encodings for Thai and VietnameseCaolán McNamara1-0/+4
Change-Id: Ie9fbf8d25e7954ae3a60ea7224881a0ad58280ad
2014-12-02Resolves: fdo#36514 avoid empty style names in ww2 docsCaolán McNamara1-16/+11
Change-Id: Ib7987e00bb33e46117442db74dcdd386e8a2bc97