8100 Commits

Author SHA1 Message Date
Thomas Arnhold
92b2215786 typo: hilight -> highlight 2014-04-14 12:33:06 +02:00
Thomas Arnhold
60c8df4326 remove static strings 2014-04-14 12:31:55 +02:00
Thomas Arnhold
c11790bb67 remove OV* debug stuff 2014-04-14 12:31:49 +02:00
Ariel Constenla-Haile
78d015849c Resolves: #i124629# UNO Wizard - avoid crash by removing unneeded reference
(cherry picked from commit 6a820f13a5cadc3d6d8c7bac1e4042adcee379ac)

Conflicts:
	svtools/source/uno/wizard/wizardshell.cxx

Change-Id: I2d67451c6fb536149603777a84d9b73494b6ed84
2014-04-11 09:44:05 +01:00
Tor Lillqvist
6835d9f307 It's "its", not "it's"
Change-Id: Ieaa787afd7cc622b4750a2ee8f17f6dad934ba63
2014-04-10 20:22:50 +03:00
Stephan Bergmann
fa72a0e94d Remove unused code
Change-Id: Ifaab2aecec65ec6e81056e5fca430df8ca3af908
2014-04-09 10:15:47 +02:00
Caolán McNamara
7077fa3b0d coverity#708288 Uninitialized scalar field
also coverity#708289 Uninitialized scalar field

Change-Id: I7fe8fb8073af6e66fc548e1e10969ca555ea9bab
2014-04-08 12:18:53 +01:00
Caolán McNamara
380d4600d7 use TriState instead of sal_Bool as there's three possibilities
Change-Id: If24d4cec9ef4369f20419fe70de7392614a35316
2014-04-08 09:18:33 +01:00
Tor Lillqvist
53a0914c5c Bin empty @seealso, @param, @return etc metacomments
Change-Id: I1590c20c4080578f5b528f4d6d43749e4e939fde
2014-04-07 19:56:50 +03:00
Tor Lillqvist
0db3691954 WaE: passing OString by value, rather pass by reference
Change-Id: I41a318b8376ae3e68701ffe6ebc745bdbec62dc8
2014-04-06 23:39:50 +03:00
Tomaž Vajngerl
58f8e286e9 Add HtmlWriterHelper to svtools.
Change-Id: I4d96402cc0fa86d83fe0ade314b84bff86d7db97
2014-04-06 22:02:12 +02:00
Tomaž Vajngerl
2480ded80e HtmlWriter: add prettyPrint option, instance variables
Change-Id: I6a29e91cc2f328ccbd01b617b39dc9275332d1f0
2014-04-06 22:02:11 +02:00
Tomaž Vajngerl
ee0b9f8df6 svtools: make HTMLOutFuncs::Out_AsciiTag clearer.
Change-Id: I89d72383a50707aa8cb958eaea916e8070cfcd82
2014-04-06 22:02:10 +02:00
Tomaž Vajngerl
96c548a7c6 svtools: HtmlWriter - for writing HTML structure to a stream
HtmlWriter is used to write the structure of a HTML document to
a stream. The goal is to abstract the messy construction of
strings when writing attributes of a html element and other
HTML specifics needed when structuring a HTML document.

Change-Id: Ibdf42914e43ef02f16a43e4230575ed7340e68d8
2014-04-06 22:02:10 +02:00
Caolán McNamara
0d46e05cf2 coverity#704828 Explicit null dereferenced
Change-Id: I5e27241334cfeb4dffecbbf1d010abe94fbc52df
2014-04-04 20:58:27 +01:00
Caolán McNamara
8aba3a25dd coverity#984147 Uninitialized pointer field
the original SvLBoxEntry::Clone did...

pUserData = ((SvLBoxEntry*)pSource)->GetUserData();
nEntryFlags = ((SvLBoxEntry*)pSource)->nEntryFlags;

so presumably this is what we want to do here

Change-Id: Icaafb1f5c62847167886a230391efa5f7a3fca99
2014-04-04 16:24:36 +01:00
Michaël Lefèvre
453ee351f3 fdo#43157 : clean up more OSL_POSTCOND
Change-Id: Iaca31b4e12c258b762b3d88fbad0fb08b4f1fc16
Reviewed-on: https://gerrit.libreoffice.org/8832
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-04-04 07:23:43 -05:00
Caolán McNamara
f19ca44a04 callcatcher: update unused code
Change-Id: I23ad8bcbef9a0ef17aaa5d401d111c40a6560ee2
2014-04-04 09:35:19 +01:00
Stephan Bergmann
82925f1a21 Remove unused getCommandType
Change-Id: I76c9ea0740223b601440ca7c7122b814e777fca3
2014-04-03 15:36:43 +02:00
Stephan Bergmann
4a94fc286f clearFieldAssignment only used in AssigmentTransientData
Change-Id: Ic7d11a7ad3c643354e0bb2aaf20bda2c3e41dba6
2014-04-03 15:35:37 +02:00
Noel Grandin
5babf1b903 remove unnecessary scope qualifier from sal_Bool uses
i.e. convert "::sal_Bool" to "sal_Bool"

Change-Id: Ie5943aee4fee617bf2670655558927ed25b7e067
2014-04-03 13:54:02 +02:00
Noel Grandin
a718b02f8e vcl: sal_Bool->bool and cleanup
- remove unused PFilterDlgCall typedef
- remove bool parameter from PFilterCall typedef - it was always being

  called with false, and nothing was reading it

Change-Id: Ic56127e7d55254a7b9b65849a21cb286f52344d1
2014-04-03 09:17:55 +02:00
Caolán McNamara
aa16ca7326 Resolves: fdo#76905 long delay when changing font size from % to pt
Change-Id: I33d72b51536ab96653ccda64c6e058c497289327
2014-04-02 13:47:54 +01:00
Stephan Bergmann
362d4f0cd4 Explicitly mark overriding destructors as "virtual"
It appears that the C++ standard allows overriding destructors to be marked
"override," but at least some MSVC versions complain about it, so at least make
sure such destructors are explicitly marked "virtual."

Change-Id: I0e1cafa7584fd16ebdce61f569eae2373a71b0a1
2014-04-01 19:22:54 +02:00
Caolán McNamara
9a0e6204bb coverity#735505 Logically dead code
Change-Id: I7e7abf9192ee34c9f1c2080268751503aae90e55
2014-04-01 13:46:47 +01:00
Caolán McNamara
2591ed293e coverity#984148 Uninitialized pointer field
Change-Id: I17a4a4e1c5aa1b5481e283f1c232e6483c135e84
2014-04-01 10:38:24 +01:00
Tor Lillqvist
856c749963 Kill FSYS_MAC which is for ancient non-OS X Mac
Change-Id: I51e91b97217507bcdca8c82f8a8683758d871185
2014-04-01 12:14:45 +03:00
Tor Lillqvist
b6dbe2be87 Bin pointless INET_PATH_TOKEN
There is nothing mnemonic in the name 'INET_PATH_TOKEN' that would tell the
code reader that it simply means '/'.

Change-Id: I89ce72e8be5cf0ef2c66b23ad6e721ad49105648
2014-04-01 12:14:45 +03:00
Caolán McNamara
1e68d39022 coverity#982430 Division or modulo by zero
Change-Id: I9764d4e122c4dbab2349499f30c17842e432dadc
2014-03-31 17:04:39 +01:00
Thomas Arnhold
ee1de94276 typo: persistance -> persistence 2014-03-29 19:16:18 +01:00
Caolán McNamara
dcfbd7bc4e coverity#704316 odd pDtorNotify hackery
Change-Id: I9faa61bb85ec6d89c6f5c9829d137fabb3e98c4a
2014-03-29 18:12:06 +00:00
Caolán McNamara
018652591d coverity#982312 Logically dead code
Change-Id: I2b40ac902812ad27dc06bd20603414dff3358eef
2014-03-28 17:24:07 +00:00
Stephan Bergmann
70cc2b191b First batch of adding SAL_OVERRRIDE to overriding function declarations
...mostly done with a rewriting Clang plugin, with just some manual tweaking
necessary to fix poor macro usage.

Change-Id: I71fa20213e86be10de332ece0aa273239df7b61a
2014-03-26 16:39:26 +01:00
Noel Grandin
80ef0dfedc svtools: sal_Bool->bool
Change-Id: I42a341b5805e0b2a7d619ba552700db35815afd5
2014-03-25 14:32:57 +02:00
Noel Grandin
b5e11641a7 svtools: sal_Bool->bool
Change-Id: I90320997ed79be2556eafa4c35af6b968b378454
2014-03-25 14:32:56 +02:00
Noel Grandin
436cd90095 svtools: sal_Bool->bool
Change-Id: Ifd3e643dbc6755839ad4af73ae141fd115ddb4f4
2014-03-25 14:32:56 +02:00
Noel Grandin
c849d750eb svtools: sal_Bool->bool
Change-Id: I05dd992f332ab2f3dbcc65aed6dac909872168d4
2014-03-25 14:32:55 +02:00
Noel Grandin
2d3a1d2a46 svtools: sal_Bool->bool
Change-Id: I6c57a52b4fc3ecb993af4526fefcca352ad269b5
2014-03-25 14:32:55 +02:00
Noel Grandin
bdd2df7723 svtools/svparser.hxx: sal_Bool->bool
Change-Id: I130c40227a756b396c4f858468457867d53454b1
2014-03-25 14:32:55 +02:00
Noel Grandin
b4d4ede795 svtools/svtabbax.hxx: sal_Bool->bool
Change-Id: I2441e15d2b32b897561cb404a925390299fea6d8
2014-03-25 14:32:54 +02:00
Noel Grandin
f5864e8ff4 svtools: sal_Bool->bool
Change-Id: Ia0280d3d4f2d5b8a93a37a93847951391e928028
2014-03-25 14:32:53 +02:00
Stephan Bergmann
f9cc750985 Reduce IAccessibleTabListBox to what's actually used
...the calls to getAccessibleChild(0) and getHeaderBar(BBYTE_COLUMNHEADERBAR)
ultimately all ended up at
AccessibleBrowseBox::implGetHeaderBar(BBTYPE_COLUMNHEADERBAR).

Change-Id: Ie25659e19d0d1ce2dcde2d1440ecc69b4fa265b0
2014-03-25 09:15:40 +01:00
Caolán McNamara
1e46d2f607 coverity#735504 Logically dead code
Change-Id: Idb3b2e4fe3ab67c65324de9625807808e1355cee
2014-03-24 12:12:29 +00:00
Noel Grandin
a4dc5ea2f7 svtools: sal_Bool->bool
Change-Id: I288a5c8b86d21a1b91f464aaf162aed9aca35a42
2014-03-24 08:12:10 +02:00
Noel Grandin
b41badb803 svtools: sal_Bool->bool
Change-Id: I37352e90a5304e75ce0c8ae922a167b1e70625e8
2014-03-24 08:12:10 +02:00
Noel Grandin
f7074d8de5 svtools: sal_Bool->bool
Change-Id: I2044e6c1f15579b6051fad5d36fcfa8795f88953
2014-03-24 08:12:10 +02:00
Noel Grandin
7a679ee19c svtools: sal_Bool->bool
Change-Id: I35c9c1514c67860e61b6e2457ab4548d04a4d159
2014-03-24 08:12:10 +02:00
Noel Grandin
554e54429c svtools: sal_Bool->bool
Change-Id: Ic9b4838c4d1b4d2d2ea4665811dd396bdbec31b7
2014-03-24 08:12:09 +02:00
Noel Grandin
9604eb8758 svtools: sal_Bool->bool
Change-Id: I8f171f7f61ea06a79183e9bf9b15b8c35c98cc9b
2014-03-24 08:12:09 +02:00
Noel Grandin
f661ac03e0 svtools: sal_Bool->bool
Change-Id: I22d8869551f46d2a0607f670f937853f394b6acf
2014-03-24 08:12:09 +02:00