summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2013-07-18fix warningNoel Grandin1-3/+2
"-Werror=unused-macros" was firing on non-debug builds, fix by inlining the relevant warning message macro. Change-Id: If2fba2410bf985ec51faaa94c61b2e224fc65328
2013-07-18ditch some XubStringsCaolán McNamara2-12/+12
Change-Id: I4e54102819123a0b10fcade20df3485ec86543d0
2013-07-18merge more copypaste into assertXPath()Miklos Vajna1-48/+17
Change-Id: I8ee063454e6de98ed134877d6298b6a772cf1e7a
2013-07-18merge copypaste into parseExport()Miklos Vajna1-56/+34
Change-Id: I5a680e3853d2411b00de1e286fce08d30b368ad7
2013-07-18Try to make the ziptest a bit more genericFridrich Štrba6-133/+21
Change-Id: I2a380ebcc2b32fbb8e1c0ae6b83b5f34291e5d1d
2013-07-18Trying to resurect the zip testFridrich Štrba3-5/+59
Change-Id: Ic022f25a4f8d69b8d60bea7974900db5223e1251
2013-07-18fix DOCX export page border - interoperabillity. export case #2Adam Co4-24/+191
This is a fix for the 2nd case of export of a page's border. The case is when a border's distance from text is larger than 31pt. In such a case - LO used to write the value as-is, which caused a problem in Word. Now the fix checks the value, and if it is larger than 31pt - it converts it to a distance from the page margin. Based on the problem described here: http://wiki.openoffice.org/wiki/Writer/MSInteroperability/PageBorder Change-Id: I79f721adc71ac744eb332fbf3fea8070e41ddabc Reviewed-on: https://gerrit.libreoffice.org/4959
2013-07-18debian-menus packages should not conflict with older versions (fdo#67031)Petr Mladek1-3/+0
All the files and menu entries have been versioned since LO 3.4. There are not real conflicts with older versions or native Debian packages any longer. Change-Id: Ie3afb8b506cb23767b52a5f9cf1c721521e60ec3
2013-07-18fix windows buildNoel Grandin1-35/+35
which I broke in 32eaa77 "fdo#46808, Convert frame::FrameControl service to new style" Change-Id: Ie7cd26714f2d6cb0e767439a2b1d4832cfc74a4a
2013-07-18widget layout: MenuButton needs to extract relief too.Jan Holesovsky1-0/+2
Change-Id: I648d6b83c21728802b391aba4fa279996a1aa8d1
2013-07-18Move comment.Jan Holesovsky1-1/+1
Change-Id: I7c35c6878455fd68eaddd75b39009a59352dd2c3
2013-07-18startcenter: No need for special GetFocus().Jan Holesovsky2-10/+0
Change-Id: I789f21e035f864d5b7ac84700a62a1c81f53c2be
2013-07-18startcenter: Re-introduce code that handles accelerators.Jan Holesovsky2-3/+84
Change-Id: I171de7f63e644c9446a76f6ade592c8242cadcac
2013-07-18startcenter: The explicit Show() is not necessary.Jan Holesovsky1-2/+0
Change-Id: I6e817a6c5465adb02f5431737f2ac649ac0274a5
2013-07-18startcenter: Remove unused headers & members, move consts to .cxx.Jan Holesovsky2-98/+69
Change-Id: Id163a02ac663141f113195bfc68fcedd6c4dc500
2013-07-18startcenter: Simplify the button setup & make it work better.Jan Holesovsky2-104/+51
This fixes some drawing artifacts previously visible thanks to the SetPaintTransparent( sal_False ). Change-Id: Icd6fb222e2d78f02cd298b02afbfa8e652c4566f
2013-07-18startcenter: Make the Open button work as a MenuButton.Jan Holesovsky3-25/+19
Change-Id: Ic02a271c0c2b892e0dca0a07a5c2ff9a7862ab9f
2013-07-18startcenter: The window & strings are initialized in .ui, remove from .src.Jan Holesovsky5-62/+11
Change-Id: I951e4bc12696a2cb5b1b93f28de25cd4783b9387
2013-07-18startcenter: The images have moved to .ui, remove from .src.Jan Holesovsky3-73/+0
Change-Id: Ib83a8903062f40f9e64d93a2afe5d7d088f8451a
2013-07-18startcenter: Make the widgets in .ui resizable.Jan Holesovsky1-17/+40
Change-Id: Ifc34e80bfcb71e041e7adb444c464ba917fea2b1
2013-07-18startcenter: GSOC Use Widget Layout for the Start CenterKrisztian Pinter4-465/+456
Known issue: after starting a module from the startcenter, and closing it, the buttons for the modules remain stuck after hovering the mouse over them Change-Id: I50883868764565be62a2f123a832154ef015e763
2013-07-18fdo#65632 RTF import: send NS_ooxml::LN_trackchange only once for one rangeMiklos Vajna2-3/+13
The problem was that in case we had {\deleted foo\b bar} then both "foo" and "bar" triggered a trackchange, but "}" only ended one, resulting in overlapping redline ranges. This was cought by core, but caused a performance problem. For the first bugdoc, before: real 3m57.803s after: real 0m3.072s Change-Id: Ibf6f2db30109f0b9a2571d2e4fb3cc76294f68d1
2013-07-18fdo#66762 - Other: com.sun.star.awt.DisplayAccess removedNoel Grandin4-4/+13
API_CHANGE: I removed the undocumented internal API "com.sun.star.awt.DisplayAccess" in commit dde234b6955a421d51d2b37e4fc3972c660146f0 "fdo#46808, remove awt::DisplayAccess service." However, it appears someone was actually using this. Now, at the same time, we have a method in XToolkit, getWorkArea(), which looks like it was designed to return this exact information, but which has been returning zero for as far back as our commit history goes. So, to kill two birds with one stone, this commit changes getWorkArea() to return the information the customer needs, to wit, the size and position of the primary display. Change-Id: I76300bac604e9e4b7be95b0872a7f95cb6781903 Reviewed-on: https://gerrit.libreoffice.org/4919 Reviewed-by: Michael Meeks <michael.meeks@suse.com> Tested-by: Michael Meeks <michael.meeks@suse.com>
2013-07-18WaE: assuming signed overflow does not occur when assuming...Caolán McNamara1-2/+9
that (X + c) < X is always false [-Wstrict-overflow] Change-Id: I63880bf27ab7e34eb9e0be682b39b80b71d65103
2013-07-18fdo#46808, Convert frame::FrameControl service to new styleNoel Grandin8-91/+224
Change-Id: I38fc91e70d99472a4336250acd5c7dc3457b21ab
2013-07-18remove some useless comment blocksNoel Grandin1-338/+0
Change-Id: I3fd6c7ee6ae5b6c634c14ad9d60ae4abc8c03880
2013-07-18Resolves: #i122767# disallow pre-standard C++ for-scopeHerbert Dürr2-4/+4
(cherry picked from commit 197b1ac3007b870e6c51ae9c767ad4f2a340e799) Conflicts: odk/settings/settings.mk solenv/gbuild/platform/windows.mk solenv/inc/set_wntx64.mk solenv/inc/wntmsci11.mk Change-Id: I266a0d7672839b4568e76b7223aae15d82cd9a63
2013-07-18fdo#65457 - Provide visual clues in presenter view.Ciorba Edmond11-1/+167
Change-Id: I225ae2dfa467df824d2586a05c8b8b576a43e8dc Reviewed-on: https://gerrit.libreoffice.org/4929 Reviewed-by: Andras Timar <atimar@suse.com> Tested-by: Andras Timar <atimar@suse.com>
2013-07-18fdo#66981 descriptions should start with upper case letterAndras Timar1-42/+42
Change-Id: I4821b2821af6b328f4e295b20709a84ce259ef5b
2013-07-17grr, forgot the disabled expanded fooCaolán McNamara1-2/+2
Change-Id: I7a32e00c740f1c911e92c845d0181713362fefee
2013-07-18*api: tweak docsMichael Stahl11-33/+38
Change-Id: Icc470b284cc511facbe7479d3d04f033ec4e19e5
2013-07-17Revert "firebird: pass link options as LDFLAGS"Michael Stahl1-6/+7
This reverts commit 3136c467dcfc3fe457ccc974684333f431f0af61. Strangely firebird's build system apparently uses LDFLAGS on Linux and Windows but not on MacOSX, whereas CXXFLAGS are consistently put also on linker command lines. Change-Id: I87dbe69a8d85b058ece9170105bf928cbd22db85
2013-07-17Updated coreCaolán McNamara1-0/+0
Project: help d87de0c383537470900fcd7dc78d534e1f9c3f7c
2013-07-17Updated coreCsikós Tamás1-0/+0
Project: help a9a5eef71062ee0fe8ab18845166af73f6e25a00 update help ids for advanced filter dialog .ui conversion Change-Id: I3f4ed027caf18871f6642eb96c2f857d77cad242 Reviewed-on: https://gerrit.libreoffice.org/4961 Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
2013-07-17wrong widget name in wrap page .ui conversionCaolán McNamara1-1/+1
Change-Id: If29d55eaa2fa58ea907611a93b90a1e41178a6da
2013-07-17set the widgets to get the extra title text from when in shrink modeCaolán McNamara6-186/+13
Change-Id: Ia809ab852180f0422a16b2fad5d93f35a2e6f604
2013-07-17modern .ui widgetlayout for sfilterdlgCsikós Tamás8-127/+899
Change-Id: I0182338fe2d70d6484d2e7edc2ee621d1a19f150 Reviewed-on: https://gerrit.libreoffice.org/4934 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2013-07-17remove gb_LinkTarget_add_noexception_objectBjoern Michaelsen7-21/+1
Change-Id: I44f7df6e5f816cfcf7a44c6c4c76e80924237d45 Reviewed-on: https://gerrit.libreoffice.org/4955 Reviewed-by: Björn Michaelsen <bjoern.michaelsen@canonical.com> Tested-by: Björn Michaelsen <bjoern.michaelsen@canonical.com>
2013-07-17kill gb_NoexPrecompiledHeaderBjoern Michaelsen7-100/+3
Change-Id: I34b6cc6eceb8f326ba7e353d3d1aee3c93ea02bd Reviewed-on: https://gerrit.libreoffice.org/4956 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: Björn Michaelsen <bjoern.michaelsen@canonical.com> Tested-by: Björn Michaelsen <bjoern.michaelsen@canonical.com>
2013-07-17Resolves: #i21548# add context menu to code editor part of Basic IDEHerbert Dürr1-0/+6
for now only with cut, copy and paste but can be extended Patch by: Tsutomu Uchino <hanya.runo@gmail.com> (cherry picked from commit 82170a2180449bccb55b5091571dc79ec6fc7b51) Conflicts: basctl/source/basicide/baside2b.cxx Change-Id: I2654eb073804cfe6936fa98e859800441ee34e42
2013-07-17Resolves: #i122759# prefer the UIName for the list of...Herbert Dürr1-3/+4
"Always save as" filter names the listbox in the Tools->Options->Load/Save->General->AlwaysSaveAs listbox did not prefer the localized UIName, so sometimes the internal filter name was shown in the user interface even when an UIName was provided. Patch by: Tsutomu Uchino <hanya.runo@gmail.com> (cherry picked from commit 963530a3b78ace2e21cf73c161996f613256b367) Conflicts: cui/source/options/optsave.cxx Change-Id: Id83dd0859275a8b0ac52bfd65bd1fd7dcfb4362e
2013-07-17Resolves: #i116828# fix comment in XGridColumn IDLHerbert Dürr1-1/+1
Patch by: Tsutomu Uchino <hanya.runo@gmail.com> Found by: marcelly@club-internet.fr Review by: Herbert Duerr (cherry picked from commit 17f5e0140232f9483dd461a0ea58d59b11280f71) Conflicts: offapi/com/sun/star/awt/grid/XGridColumn.idl Change-Id: I176dccf7d6e2016dbedea08423e2d08e8ff6f073
2013-07-17Resolves: #i122720# Adapted HasText() to SdrObjectArmin Le Grand7-9/+15
(cherry picked from commit 880138a7794e7e641cdcf49277ed01b54ca93c59) Conflicts: cui/source/tabpages/swpossizetabpage.cxx cui/source/tabpages/textattr.cxx cui/source/tabpages/transfrm.cxx svx/inc/svx/svdobj.hxx svx/inc/svx/svdotable.hxx svx/inc/svx/svdotext.hxx svx/source/svdraw/svdobj.cxx Change-Id: Ic2564b845425ba63e6ae2ad6a80f3bfdb8a2f287
2013-07-17Updated coreCaolán McNamara1-0/+0
Project: help 48fa20a5cd43b2f132709e7ad9274627c1983d9b
2013-07-17Related: fdo#65632 DOCX import: make start/end of trackchange both be an sprmMiklos Vajna3-7/+9
The end is an attribute since 0211e8bc457a12570988f4aee7dea42c2fc6d56f, but this just confuses dmapper. With this, the DOCX version of the bugdoc can now be imported without getting an exception in DomainMapper_Impl::CreateRedline(). Change-Id: If820b43a267a62ecdc323eef49bf13d576165269
2013-07-17Related: fdo#65632 DOCX filter: fix import of non-redlined footnoteMiklos Vajna4-9/+29
Change-Id: Ie1a86e6b59c43c3ee54076d5d68aa3fca0d6a515
2013-07-17convert frame/graphic wrap page to .uiCaolán McNamara7-482/+904
Change-Id: I931214850dea1442fa0a4e3314dd339aaff5a789
2013-07-17fix old indentCaolán McNamara1-68/+68
Change-Id: I05781f34ed22801ac2d99629a0914c069201a918
2013-07-17fix radiobutton GetOptimalSize for imagesCaolán McNamara1-14/+28
Incredibly ugly stuff, but this is (as far as I can see) what the drawing is actually doing. e.g. WB_TOP, surely it should be using image align. Change-Id: If2dcb1caf92cd5bbd2f07114ae2c41843b5a7f38
2013-07-17dump the name of the radiobuttons without groups setCaolán McNamara1-1/+1
Change-Id: I873b5825ef4c49aec86799556229584116f066fa