Age | Commit message (Collapse) | Author |
|
Change-Id: If6c886ac4115dd0a030660fd0147491815fa411a
|
|
and a drive-by on some no .src InfoBox and ErrorBoxes to MessageDialog
Change-Id: Ideb58a0042ed45a49bff9b336622dfe11bb363ab
|
|
Change-Id: Ie772d7a60fd65b93ca66c543eb2786ce7f109004
|
|
Change-Id: I4c4ec4f2169d001e6f09c9c7bb06a4b0b327a2f8
|
|
Change-Id: I9db36a231ea846929f8860d089d77d0126242c26
|
|
Change-Id: I210ab0bb294ddfefc3f60cffe64b72e5d8fa4650
|
|
Change-Id: Ia5f104bfd707bcf4e159c78ca2764c861fb0b6d9
|
|
Change-Id: Ib324adb4bc894f16c051fe956c25e37b0502006c
|
|
a new log section (sal.rtl.xub) is used to display alert in case of
suspicious len == 0xFFFF (aka STRING_LEN)
Change-Id: I3ed2aa7896e12592be9e003580dd6c8eda4add5e
Reviewed-on: https://gerrit.libreoffice.org/7117
Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org>
Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com>
|
|
Change-Id: I56f38bd786f3a026cb2908f28540dc9c4003af83
|
|
Change-Id: I8a2ca73c02fd6b04ce60e7701c51d2362ef7ec06
|
|
Change-Id: If4588034fc09e4663b5217669c71f26c0a3b8c8a
|
|
Change-Id: I4817694d183d525fa5a29eb9693a20d491549e5d
|
|
Change-Id: Iffa67c345a03852ad7872031b4c5a87e223ffcad
|
|
change code like
aStr = OUString("xxxx");
to
aStr = "xxxx";
Change-Id: Ib981a5cc735677ec5dba76ef9279a107d22e99d4
|
|
- this renames the 'almost' module target to non-l10n
- and adds a l10n target which is intended to only build l10n parts of
the product
- packagers should then be able to build l10n and non-l10n parts of the
product independently, thus:
- enable quicker rebuilds
- distribution of load
- updates to l10n without a full rebuild
- security fixes to binaries without rebuilding all l10n
- the new targets are called build-l10n-only and build-non-l10n-only
- note this is not intended to move a concept of split packages
upstream -- while this exsists in distros, the number of test
scenarios for this would explode upstream
Change-Id: Ib8ccc9bc52718d9b0ebbfee76ad93dc29c260863
Conflicts:
filter/Module_filter.mk
|
|
Change-Id: Ibf04062ca86ed866202d748c3b62a210d30ed6ec
|
|
Change-Id: I1897c587c02c5b50e6e8a7bf70467233be871878
|
|
regression from e13a3d566ecc34a46e037aca1b2d70e58501e422
Change-Id: I0d734e112038746aa48df669d4b82b644a95c220
|
|
Convert code like:
if( aStr == OUString("xxxx") )
to this:
if( aStr == "xxxx" )
Change-Id: I8d201f048477731eff590fb988259ef0935c080c
|
|
This also means that this code now gets bounds checked in debug builds.
Change-Id: Id777f85eaee6a737bbcb84625e6e110abe0e0f27
|
|
This is both an optimisation and a cleanup.
This converts code like
aStr.indexOf("XX") == 0
to
aStr.startsWith("XX")
and converts code like
aStr.lastIndexOf("XXX") == aStr.getLength() - 3
to
aStr.endsWith("XXX")
Note that in general
aStr.lastIndexOf("X") == aStr.getLength() - 1
converts to
aStr.isEmpty() || aStr.endsWith("X")
so I used the surrounding context to determine if aStr could be empty
when modifying the code.
Change-Id: I22cb8ca7c2a4d0288b001f72adb27fd63af87669
|
|
...which reveals that SyntaxHighlighter::notifyChange does nothing, so remove it.
Change-Id: I49834af29081ee703d9e62e182e3c1f8ce7e212e
|
|
...which reveals that m_pKeyWords, m_nKeyWordCount members are unused.
Change-Id: I55020e892d463f2e40d5bcf71efba92778b317c1
|
|
(and clean up a little)
Change-Id: I6e660708d8ca1509b89b306cd428dc38c8b03f2c
|
|
...which are never read; remove thereby unused parameters from functions.
Change-Id: I644d2dc1b2d13ae2f932d04243521eef97e67e3e
|
|
Change-Id: I90a7a07a43559b8d7e1d4b886b2624255200d46b
Reviewed-on: https://gerrit.libreoffice.org/6406
Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org>
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Tested-by: Stephan Bergmann <sbergman@redhat.com>
|
|
Convert places that call
aStr[aStr.getLength()-1] == 'x'
to use the shorter form
aStr.endsWith("x")
Change-Id: I1b3a19c0e89b8989cdbeed440f95fc76f9a4b6b6
|
|
(Had to fix type of some variables holding TextPaM::GetIndex() values from
sal_uLong to sal_uInt16 to avoid -Werror,-Wsign-compare failures when comparing
those against HightlightPortion's nEnd.)
Change-Id: Ia8a0ba682ae28e86e394ee48adff3225eb8de053
|
|
Change-Id: I4d26372ea40e7890b76461a764435f8948466ae1
|
|
Change-Id: I0ecc15f9bfd557d0a70a05536906a4984a46463c
|
|
They are practically always useless, often misleading or obsolete.
Change-Id: I2d32182a31349c9fb3b982498fd22d93e84c0c0c
|
|
Change-Id: I7bfd221f89718ba8634417c93a26b3a199178694
|
|
Change-Id: I47b9b91d72e423c0ef37eaa9f081e755adfc36d6
|
|
Change-Id: I99aa82d29d056afde92d258fd5cdf13359f9b74c
|
|
It's extremely annoying to have to dismiss the warning with every keypress ;-)
Change-Id: Ie117085ef25676065aedd0744cf618e1b566688b
|
|
Change-Id: Iac999c157d0d3fdb737bd2d92240e252cfb05333
|
|
Change-Id: I76acfa77eea862a1562521eea5160ed054f68650
|
|
Change-Id: I65f64b1604c9c0aa3538d6e9384014fd44e16c0b
|
|
Change-Id: Icac2ca781f067975746d4b861fcbd60e6577b64e
|
|
Change-Id: I270455041b73450e6ed1fc5a05e68c88db4310ab
|
|
Change-Id: I92864b2491882e0553b87d9d87d126ec30ef3974
|
|
Change-Id: I638d7d89b7c1414aac34bcf1c92fdde8eee98e2a
|
|
Change-Id: Ieb47b91dd745db400c7ad4756167de758a625a64
|
|
Change-Id: I68d9c84dbaa1a9a8d60d572027fcbc1d8c481e8e
|
|
Change-Id: I159693ff794482c772186947fa6ce5cb9aa71ad6
|
|
Change-Id: I22101fec4b75e567153c6401ab754e1a5e158a77
|
|
Change-Id: Iac38d4fd5d1d8b5c305bbb20eb1b40a7c7dec9bf
|
|
Change-Id: I4a9b34d63d2534a35aa9a878b8c2bec15262c2be
|
|
Change-Id: Ied011ae19ef850826f52f4ebd5a22dba0caf5d2b
|