summaryrefslogtreecommitdiff
path: root/svtools
AgeCommit message (Collapse)Author
2015-04-09some cleanup in treelistboxTomaž Vajngerl
Change-Id: I24720adfc7c1c38ba7d804baef3c1e01e01d64cb
2015-04-08convert SV_ITEMSTATE constants to SvItemState scoped enumNoel Grandin
Change-Id: I7d7d516f37cbb5e28a842bbc6bff54916d450dbb
2015-04-07Remove dead INetProtocol::VimStephan Bergmann
...which removes the need to abstract over the standard URI '%' escape prefix vs. the silly vim '=' special case invention. Change-Id: I54a52dd912c3aafc38275a0ac2466a6daeec328f
2015-04-06Resolves: #i81637# Replace column header "Title" by "Name"Ariel Constenla-Haile
Patch by: Driss Ben Zoubeir <driss.zoubeir@gmail.com> Review by: arielch@apache.org (cherry picked from commit b923454a0922b6767b28c8dc131534b8daf6d96b) Change-Id: Ifef870645491537217bf85b772b130d3bb4a92fd
2015-04-02Change INetProtocol enumerators to CamelCaseStephan Bergmann
...to avoid clashes with macros and poor warnings about hiding global FILE Change-Id: I444e8b958f029201b228937e088efabc4b6d3050
2015-04-02Change INetProtocol to scoped enumerationStephan Bergmann
...and fix o3tl::enumarray::operator [] const overload Change-Id: I749b1b9d68686b03a97074253478d9d2d9d32b0b
2015-04-02Remove obsolete INET_PROT_PRIVATE aliasStephan Bergmann
Change-Id: I6c82dad9d69e19d5596f23eacfbd20768f9f6442
2015-04-02loplugin:staticmethodsNoel Grandin
Change-Id: Ibf0c73ac17ec19ed672f66907db47057920babca
2015-04-01Replace remaining getCppuType et al with cppu::UnoTypeStephan Bergmann
Change-Id: I1693826962a0551396fd5691dc4a98f0646bade3
2015-03-31tdf#89873 UI: some dialog windows not being paintedJuergen Funk
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>
2015-03-31Reduce to static_cast any reinterpret_cast from void pointersStephan Bergmann
Change-Id: If4bc1b998952ff2f86124e68d108869d7749ea5b
2015-03-29tdf#90292: Crash in pivot table when dragging field into Rows fieldsJulien Nabet
Regression from 6bf3b6d420873e236b2805a42a95ce33e614ad98 Change-Id: I422958e5979abeee1b07a4d0e81328d72d2c61c9
2015-03-28Clean up C-style casts from pointers to voidStephan Bergmann
Change-Id: If8783896136470a0664f1cbac061e30576ef96a4
2015-03-27convert ProminentEntry to enum classNoel Grandin
Change-Id: I51578e83a6a44beece174792c9e3e59f7f8c5fef
2015-03-26const_cast: convert some C-style casts and remove some redundant onesStephan Bergmann
Change-Id: Iabe2ecce65a91b003fe042a22630131449968fd8
2015-03-25Typo: formated->formattedJulien Nabet
Change-Id: Iefd4d375a0dfb36732233852f906c6b85dccc2a5
2015-03-20tdf#88230: cleanup solar mutex yieldingPranav Kant
Use SolarMutexReleaser, instead. Change-Id: I276459c42b688813ea168d6fc80466a07a5ecba4 Signed-off-by: Stephan Bergmann <sbergman@redhat.com>
2015-03-20Typo: (O/o)veride(n)->(O/o)verride(n)Julien Nabet
Change-Id: Ied81ede9aaf045866596adc40d357cbbddb3d704
2015-03-19loplugin:constantfunction: svtoolsNoel Grandin
Change-Id: I42479fb10878a0a1c2071f7b35ae375061781d40
2015-03-18SotClipboardFormatId::FILE->SotClipboardFormatId::SIMPLE_FILECaolán McNamara
Change-Id: Ice4963da8a856b1d2ada13e5b699157a0217e06c
2015-03-18create new 'enum class' SotClipboardFormatId to unify typesNoel Grandin
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
2015-03-17Fix various XServiceInfo implementationsStephan Bergmann
...to match what is recorded in the .component files Change-Id: Ie548cd37872d3b8540222201afaac73040e65c8f
2015-03-16tdf#89361 Remove remnants of Gopher supportAdolfo Jayme Barrientos
Change-Id: Ib2038a43b0d49a525199329a2c79d5779f5322fa Reviewed-on: https://gerrit.libreoffice.org/14471 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>
2015-03-13V803 decreased performance postfix incrementMichael Stahl
These are pretty silly anyway, but apparently it complains even about integer variables which make this rather a waste of time. Change-Id: I15e847d33d5decd2adcab04e4f1567d3997d28a2
2015-03-11do not call virtual Commit() from dtors of utl::ConfigItem subclassesMichael Stahl
~SvtAppFilterOptions_Impl() demonstrates that this is a bad idea, by not invoking its subclasses' ImplCommit() but its own. Change-Id: Ic675e9cd3be1494c740a4f289be3bdbf0d1a122b
2015-03-11utl::ConfigItem::Commit() should call ClearModified()Michael Stahl
Rename the virtual function, and add a new non-virtual Commit() to do that. Change-Id: I09421df781ba965d6ff638b46cd8214fb3a00022
2015-03-10tabbar: remove useless whitespace, rearrange constructorTomaž Vajngerl
Change-Id: Iee31413c1ded4fbda8227e88d09a1f917f18ca5d
2015-03-10tabbar: convert ItemList* to ItemList and clean-upTomaž Vajngerl
Change-Id: Ibd4364f7d30f098df49537c6a6a01915bfa31b8d
2015-03-10tabbar: move TabBarList to implTomaž Vajngerl
Change-Id: I71632990601bfc21ae2e6ba5c640f1dd3e6c1ee5
2015-03-10tabbar: use unique_ptr for buttons, sizer & clean-upTomaž Vajngerl
Change-Id: I4c479f0581e5fde7c3c2c21dcb2a88a2039e09ba
2015-03-10tabbar: use symbol "plus" instead of image for adding tabsTomaž Vajngerl
Change-Id: I425005534b9b73c3450112fd9a30035985cc38e1
2015-03-07tdf#88847: Fields of query design can be moved to the left onlyJulien Nabet
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>
2015-03-06Idle: Changed to new enum nameTobias Madl
Change-Id: Id3852abe9bc7bbe774331a7d691abd2a79ff59b4
2015-03-06Idle: Removed VCL_IDLE_PRIORITY_ prefix of enumTobias Madl
Change-Id: I12290bed7e4f298ab90393b8de6e2b6e7061e53f
2015-03-06idle includes and enum useJennifer Liebel
Change-Id: I8a280c54d81c7da74c9ab03ff3fc788e373ca4e4
2015-03-06Timer: Adapted all idle includes and enum usesTobias Madl
Change-Id: Id4ef36d6c80ad62306bdbaa7094c2cb0b8ff77da
2015-03-06Timer: Reversed some Idles to TimerTobias Madl
Change-Id: I213722cc98490430378014290cb09cca9e469bbb
2015-03-06use DrawHandle for drawing of tab sizer in tabbarTomaž Vajngerl
Change-Id: I3aacb177d209db74ffadf5284550cdd4972554de
2015-03-06tabbar: scroll tabs with wheelTomaž Vajngerl
Change-Id: I9d7d1e16c34eac75652a1275b6e4ac3f7973cb56
2015-03-05add margin before/after button handles in tabbarTomaž Vajngerl
Change-Id: Id9b16fc4168febd217a2d263a158daca85fdea38
2015-03-04V813: Decreased performanceCaolán McNamara
Change-Id: I8a7528366156b288dc422b09cff0d5a32cde3c91
2015-03-02coverity#1272391 Dereference null return valueCaolán McNamara
Change-Id: Id1c5a498ff5c25eefe2573e695f66d8922213f92
2015-03-02convert GFF_ constants to enum classNoel Grandin
Change-Id: I88469e8d6afb3fcefdaf285a56b7acd576bc8520
2015-03-02in tabbar - don't show tab background on tab add (plus icon)Tomaž Vajngerl
Change-Id: Ibe6ff1164382474ff120078bacf28344bc1b1985
2015-03-02tabbar buttons next/previous act as last/first if MOD1 is pressedTomaž Vajngerl
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
2015-03-02make tabbar buttons flat by defaultTomaž Vajngerl
Change-Id: I31066defc8d3c645b2cd809f1e445178c95fc50e
2015-03-02cleanup TabBar's ImplTabButtonTomaž Vajngerl
Change-Id: Ic77f322cce00885896343ce21e35db4e286aafda
2015-03-01variable is assigned the same value twiceMarkus Mohrhard
Change-Id: I8295b106352d449a3163ea56113a59525ac3eaf4
2015-03-01fix self-assignmentDavid Tardon
Change-Id: Id4c5ac26ac33ba87407127586fb1961b9fb24967
2015-02-28Typo: excute->executeJulien Nabet
Change-Id: I8c73d95d92dc4a30dd6a71260817ab4fc3096f27