Age | Commit message (Collapse) | Author |
|
Change-Id: I89aa0e22c31d368ab36fe46917db6aacb11c7b14
|
|
ie.
void f(void);
becomes
void f();
I used the following command to make the changes:
git grep -lP '\(\s*void\s*\)' -- *.cxx \
| xargs perl -pi -w -e 's/(\w+)\s*\(\s*void\s*\)/$1\(\)/g;'
and ran it for both .cxx and .hxx files.
Change-Id: I314a1b56e9c14d10726e32841736b0ad5eef8ddd
|
|
it breaks sorting of conditional formatting manager table.
This reverts part of commit f92ab4da51647a4353038b1c56
Change-Id: I22d4b939cf888451bff6500fdf0d6b900903deb1
|
|
Change-Id: I58297ba336d96358eb0683684bbd763870ef56cb
|
|
Change-Id: I715374b531da2850434b2436633b6042ecb9ebe0
|
|
Change-Id: I24720adfc7c1c38ba7d804baef3c1e01e01d64cb
|
|
Change-Id: I7d7d516f37cbb5e28a842bbc6bff54916d450dbb
|
|
...which removes the need to abstract over the standard URI '%' escape prefix
vs. the silly vim '=' special case invention.
Change-Id: I54a52dd912c3aafc38275a0ac2466a6daeec328f
|
|
Patch by: Driss Ben Zoubeir <driss.zoubeir@gmail.com>
Review by: arielch@apache.org
(cherry picked from commit b923454a0922b6767b28c8dc131534b8daf6d96b)
Change-Id: Ifef870645491537217bf85b772b130d3bb4a92fd
|
|
...to avoid clashes with macros and poor warnings about hiding global FILE
Change-Id: I444e8b958f029201b228937e088efabc4b6d3050
|
|
...and fix o3tl::enumarray::operator [] const overload
Change-Id: I749b1b9d68686b03a97074253478d9d2d9d32b0b
|
|
Change-Id: I6c82dad9d69e19d5596f23eacfbd20768f9f6442
|
|
Change-Id: Ibf0c73ac17ec19ed672f66907db47057920babca
|
|
Change-Id: I1693826962a0551396fd5691dc4a98f0646bade3
|
|
The bug in TreeLists with black background is NOT from scheduler.
It is from patch 148e489e33a34c6345326c9beaf248ac91f8cd01
Lot of dialogs not set the background, that was the problem.
My fix set the backgound to the default background.
Change-Id: I0f07bf54131aeb177bcf150e6854203c34b6b972
Reviewed-on: https://gerrit.libreoffice.org/15071
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
|
|
Change-Id: If4bc1b998952ff2f86124e68d108869d7749ea5b
|
|
Regression from 6bf3b6d420873e236b2805a42a95ce33e614ad98
Change-Id: I422958e5979abeee1b07a4d0e81328d72d2c61c9
|
|
Change-Id: If8783896136470a0664f1cbac061e30576ef96a4
|
|
Change-Id: I51578e83a6a44beece174792c9e3e59f7f8c5fef
|
|
Change-Id: Iabe2ecce65a91b003fe042a22630131449968fd8
|
|
Change-Id: Iefd4d375a0dfb36732233852f906c6b85dccc2a5
|
|
Use SolarMutexReleaser, instead.
Change-Id: I276459c42b688813ea168d6fc80466a07a5ecba4
Signed-off-by: Stephan Bergmann <sbergman@redhat.com>
|
|
Change-Id: Ied81ede9aaf045866596adc40d357cbbddb3d704
|
|
Change-Id: I42479fb10878a0a1c2071f7b35ae375061781d40
|
|
Change-Id: Ice4963da8a856b1d2ada13e5b699157a0217e06c
|
|
of which there are several.
There are some issues here I am unsure of
- the SW and SC and CHART2 modules essentially ignore the enum values and assign their own ids
Perhaps I should change them to use the common values and create new enum values where necessary?
- the sc/qa/ and sq/qa/ and starmath/qa/ code was doing some dodgy stuff. I translated the code to pass down the stuff
numeric values to the underlying code, but perhaps further fixing is necessary?
Change-Id: Ic06d723e404481e3f1bca67c43b70321b764d923
|
|
...to match what is recorded in the .component files
Change-Id: Ie548cd37872d3b8540222201afaac73040e65c8f
|
|
Change-Id: Ib2038a43b0d49a525199329a2c79d5779f5322fa
Reviewed-on: https://gerrit.libreoffice.org/14471
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Michael Stahl <mstahl@redhat.com>
|
|
These are pretty silly anyway, but apparently it complains even about
integer variables which make this rather a waste of time.
Change-Id: I15e847d33d5decd2adcab04e4f1567d3997d28a2
|
|
~SvtAppFilterOptions_Impl() demonstrates that this is a bad idea, by not
invoking its subclasses' ImplCommit() but its own.
Change-Id: Ic675e9cd3be1494c740a4f289be3bdbf0d1a122b
|
|
Rename the virtual function, and add a new non-virtual Commit() to do
that.
Change-Id: I09421df781ba965d6ff638b46cd8214fb3a00022
|
|
Change-Id: Iee31413c1ded4fbda8227e88d09a1f917f18ca5d
|
|
Change-Id: Ibd4364f7d30f098df49537c6a6a01915bfa31b8d
|
|
Change-Id: I71632990601bfc21ae2e6ba5c640f1dd3e6c1ee5
|
|
Change-Id: I4c479f0581e5fde7c3c2c21dcb2a88a2039e09ba
|
|
Change-Id: I425005534b9b73c3450112fd9a30035985cc38e1
|
|
Part of code
1299 ImplHeadItemList::iterator it = mpItemList->begin();
1300 ::std::advance( it, nPos );
1301 ImplHeadItem* pItem = *it;
1302 mpItemList->erase( it );
1303 if ( nNewPos < nPos ) <-- case move to left
1304 nPos = nNewPos;
1305 it = mpItemList->begin();
1306 ::std::advance( it, nPos );
1307 mpItemList->insert( it, pItem );
So in move to right case, we erase and insert pItem at the same place
We just have to use nNewPos in all cases
regression from bd24a310be1459510b760b812838cb87923853c5
Also add back "ImplUpdate" call erroneously removed in merge
commit 67d2af6fac2d9bad52a6b1f6e0cbd1229eb88a42
(there is an ImplUpdate call in each parent of that merge commit)
Change-Id: I100b0c6874b366f777c5d38470fcee7a9a7326df
Reviewed-on: https://gerrit.libreoffice.org/14777
Reviewed-by: Lionel Elie Mamane <lionel@mamane.lu>
Tested-by: Lionel Elie Mamane <lionel@mamane.lu>
|
|
Change-Id: Id3852abe9bc7bbe774331a7d691abd2a79ff59b4
|
|
Change-Id: I12290bed7e4f298ab90393b8de6e2b6e7061e53f
|
|
Change-Id: I8a280c54d81c7da74c9ab03ff3fc788e373ca4e4
|
|
Change-Id: Id4ef36d6c80ad62306bdbaa7094c2cb0b8ff77da
|
|
Change-Id: I213722cc98490430378014290cb09cca9e469bbb
|
|
Change-Id: I3aacb177d209db74ffadf5284550cdd4972554de
|
|
Change-Id: I9d7d1e16c34eac75652a1275b6e4ac3f7973cb56
|
|
Change-Id: Id9b16fc4168febd217a2d263a158daca85fdea38
|
|
Change-Id: I8a7528366156b288dc422b09cff0d5a32cde3c91
|
|
Change-Id: Id1c5a498ff5c25eefe2573e695f66d8922213f92
|
|
Change-Id: I88469e8d6afb3fcefdaf285a56b7acd576bc8520
|
|
Change-Id: Ibe6ff1164382474ff120078bacf28344bc1b1985
|
|
If user presses MOD1 (ctrl) key, the next / previous will act
as last / first button. This support removes the need for last /
first button.
Change-Id: I53c9cf0b4963ed4f4c99eb47c21e643e1c6f9110
|