Re: Looking for help for clipboard in Math

2015-06-06 Thread Regina Henschel

Hi Michael,

thank-you for looking at my problems.

Michael Stahl schrieb:

On 05.06.2015 01:44, Regina Henschel wrote:

Hi all,

I struggle with the clipboard. My goal is to import MathML in module
Math from clipboard, similar as it is imported from file. But I'm stuck.
Therefore some questions:

[skipped a lot of text]


include/sot/formats.hxx: enum class SotClipboardFormatId

there is no MathML in there, but various STARMATH_* ones.

 // the point at which we start allocating runtime format IDs
 USER_END  = STARWRITERGLOB_8_TEMPLATE

so what you probably have as ID is user-defined, which means we can't
do anything with it really.

it looks like there needs to be some mapping from the OS-specific
clipboard to these office-internal IDs - if there's no ID for MathML it
can't be mapped.

there is a big array in sot/source/base/exchange.cxx, you probably need
to add an entry for MathML there.

the array is ordered and indexed by the SotClipboardFormatId.

/* 48 SotClipboardFormatId::STARMATH_50*/{
application/x-openoffice-starmath-50;windows_formatname=\StarMath
5.0\, StarMath 5.0, cppu::UnoTypeSequencesal_Int8::get() },

that's the mime-type and human-readable name.

i was wondering how this would work on Windows, given that the Win32
clipboard presumably does not use mime-types; apparently the
;windows_formatname=\...\ appendix to the mime-type here covers that.


Helpful comments. Looking around I think, the connection to the OS is 
done in /main/dtrans/source/win32/


I have found the table m_TranslTable, which refers the SOT_FORMATSTR_IDs 
from exchange.cxx. I'll try what happens, when I add the MathML format 
there too. I had already added it in exchange.cxx, but that was not 
enough to be recognized. [I need some time for that. I will report back, 
when I have finished.]






(5)
I try to use SmViewShell::InsertFrom(SfxMedium rMedium). It seems to
work, but when the process arrives at SmXMLImport::endDocument(void),
the node tree is empty.  Any tips, what I might have missed?


how do you prepare the SfxMedium?  i'm not sure if it requires an actual
file, or if it can read from an input stream (XInputStream); it probably
can't read from a Sequencesal_Int8 buffer directly...

there is a SfxMedium::setStreamToLoadFrom() which looks promising.


I have used:

TransferableDataHelper aDataHelper( 
TransferableDataHelper::CreateFromSystemClipboard(GetEditWindow()) );

uno::Reference  io::XInputStream  xStrm;
aDataHelper.GetInputStream( nId, xStrm );
SfxMedium* pClipboardMedium = new SfxMedium();
SfxMedium aClipboardMedium = *pClipboardMedium;
aClipboardMedium.setStreamToLoadFrom( xStrm, sal_True /*bIsReadOnly*/ );
InsertFrom(aClipboardMedium);


When I then proof it with

SvStream* pStream = aClipboardMedium.GetInStream();
...
sal_uLong nBytesRead = pStream-Read( aBuffer, nBufferSize );
printf(%s \n, aBuffer);

I can see, that the stream contains the expected MathML-source in case 
the clipboard viewer lists the clipboard format application/mathml+xml.


In addition I have set the filter by

const SfxFilter* pMathFilter = SfxFilter::GetFilterByName( 
String::CreateFromAscii(MATHML_XML) );

aClipboardMedium.SetFilter(pMathFilter);

so that

if ( rFltName.EqualsAscii(MATHML_XML) )

in InsertFrom becomes true


I'm still a novice in coding and it might be, that I do basic things wrong.




you can create an input stream from the buffer via SvMemoryStream and
then wrap that in utl::OInputStreamWrapper.


You mean, it will be possible to use the Unicode-Text? That would 
help, when copying from Websites. But first I need to solve the problem, 
that I get no node-tree, and the problem to detect the clipboard correctly.


Kind regards
Regina
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: basctl/source basic/source cui/source dbaccess/source desktop/source extensions/source framework/source include/vcl sc/source sd/source sfx2/source starmath/source svto

2015-06-06 Thread Noel Grandin
 basctl/source/basicide/basdoc.cxx  |2 +-
 basic/source/runtime/inputbox.cxx  |2 +-
 basic/source/runtime/iosys.cxx |2 +-
 cui/source/customize/cfg.cxx   |5 +++--
 cui/source/dialogs/hltpbase.cxx|2 +-
 cui/source/inc/align.hxx   |1 +
 cui/source/inc/autocdlg.hxx|3 +++
 cui/source/inc/backgrnd.hxx|1 +
 cui/source/inc/border.hxx  |1 +
 cui/source/inc/chardlg.hxx |4 
 cui/source/inc/grfpage.hxx |1 +
 cui/source/inc/numfmt.hxx  |1 +
 cui/source/inc/optlingu.hxx|1 +
 cui/source/inc/page.hxx|1 +
 cui/source/inc/paragrph.hxx|4 
 cui/source/inc/tabstpge.hxx|1 +
 cui/source/options/dbregister.cxx  |2 +-
 cui/source/options/optinet2.cxx|2 +-
 cui/source/options/optinet2.hxx|2 +-
 cui/source/options/optlingu.cxx|3 +--
 cui/source/tabpages/align.cxx  |3 +--
 cui/source/tabpages/autocdlg.cxx   |7 +++
 cui/source/tabpages/backgrnd.cxx   |2 +-
 cui/source/tabpages/border.cxx |3 +--
 cui/source/tabpages/chardlg.cxx|   12 
 cui/source/tabpages/grfpage.cxx|3 +--
 cui/source/tabpages/macroass.cxx   |2 +-
 cui/source/tabpages/numfmt.cxx |2 +-
 cui/source/tabpages/page.cxx   |4 ++--
 cui/source/tabpages/paragrph.cxx   |8 
 cui/source/tabpages/tabstpge.cxx   |2 +-
 cui/source/tabpages/tpcolor.cxx|2 +-
 dbaccess/source/ui/app/AppDetailPageHelper.cxx |2 +-
 dbaccess/source/ui/dlg/ConnectionPage.cxx  |2 +-
 dbaccess/source/ui/dlg/ConnectionPage.hxx  |1 +
 dbaccess/source/ui/dlg/ConnectionPageSetup.cxx |   10 +-
 dbaccess/source/ui/dlg/ConnectionPageSetup.hxx |1 +
 dbaccess/source/ui/dlg/UserAdmin.cxx   |2 +-
 dbaccess/source/ui/dlg/UserAdmin.hxx   |1 +
 dbaccess/source/ui/querydesign/querycontroller.cxx |2 +-
 desktop/source/splash/splash.cxx   |2 +-
 extensions/source/bibliography/bibload.cxx |4 ++--
 framework/source/services/tabwindowservice.cxx |2 +-
 include/vcl/layout.hxx |2 +-
 sc/source/filter/oox/worksheethelper.cxx   |6 +++---
 sc/source/ui/attrdlg/tabpages.cxx  |2 +-
 sc/source/ui/cctrl/checklistmenu.cxx   |2 +-
 sc/source/ui/dbgui/tpsubt.cxx  |   14 ++
 sc/source/ui/dbgui/validate.cxx|2 +-
 sc/source/ui/docshell/tpstat.cxx   |2 +-
 sc/source/ui/inc/scuitphfedit.hxx  |4 
 sc/source/ui/inc/tabpages.hxx  |1 +
 sc/source/ui/inc/tpcalc.hxx|1 +
 sc/source/ui/inc/tpcompatibility.hxx   |1 +
 sc/source/ui/inc/tpdefaults.hxx|1 +
 sc/source/ui/inc/tpformula.hxx |1 +
 sc/source/ui/inc/tphf.hxx  |2 ++
 sc/source/ui/inc/tpprint.hxx   |1 +
 sc/source/ui/inc/tpstat.hxx|1 +
 sc/source/ui/inc/tpsubt.hxx|4 
 sc/source/ui/inc/tptable.hxx   |1 +
 sc/source/ui/inc/tpusrlst.hxx  |1 +
 sc/source/ui/inc/tpview.hxx|2 ++
 sc/source/ui/miscdlgs/filldlg.cxx  |4 +---
 sc/source/ui/miscdlgs/scuiautofmt.cxx  |   14 +++---
 sc/source/ui/optdlg/tpcalc.cxx |6 +++---
 sc/source/ui/optdlg/tpcompatibility.cxx|2 +-
 sc/source/ui/optdlg/tpdefaults.cxx |2 +-
 sc/source/ui/optdlg/tpformula.cxx  |2 +-
 sc/source/ui/optdlg/tpprint.cxx|2 +-
 sc/source/ui/optdlg/tpusrlst.cxx   |8 
 sc/source/ui/optdlg/tpview.cxx |4 ++--
 sc/source/ui/pagedlg/scuitphfedit.cxx  |   16 
 sc/source/ui/pagedlg/tphf.cxx  |4 ++--
 

[Libreoffice-commits] core.git: Branch 'libreoffice-5-0' - basctl/source basic/source cui/source dbaccess/source desktop/source extensions/source framework/source include/vcl sc/source sd/source sfx2/

2015-06-06 Thread Noel Grandin
 basctl/source/basicide/basdoc.cxx  |2 +-
 basic/source/runtime/inputbox.cxx  |2 +-
 basic/source/runtime/iosys.cxx |2 +-
 cui/source/customize/cfg.cxx   |5 +++--
 cui/source/dialogs/hltpbase.cxx|2 +-
 cui/source/inc/align.hxx   |1 +
 cui/source/inc/autocdlg.hxx|3 +++
 cui/source/inc/backgrnd.hxx|1 +
 cui/source/inc/border.hxx  |1 +
 cui/source/inc/chardlg.hxx |4 
 cui/source/inc/grfpage.hxx |1 +
 cui/source/inc/numfmt.hxx  |1 +
 cui/source/inc/optlingu.hxx|1 +
 cui/source/inc/page.hxx|1 +
 cui/source/inc/paragrph.hxx|4 
 cui/source/inc/tabstpge.hxx|1 +
 cui/source/options/dbregister.cxx  |2 +-
 cui/source/options/optinet2.cxx|2 +-
 cui/source/options/optinet2.hxx|2 +-
 cui/source/options/optlingu.cxx|3 +--
 cui/source/tabpages/align.cxx  |3 +--
 cui/source/tabpages/autocdlg.cxx   |7 +++
 cui/source/tabpages/backgrnd.cxx   |2 +-
 cui/source/tabpages/border.cxx |3 +--
 cui/source/tabpages/chardlg.cxx|   12 
 cui/source/tabpages/grfpage.cxx|3 +--
 cui/source/tabpages/macroass.cxx   |2 +-
 cui/source/tabpages/numfmt.cxx |2 +-
 cui/source/tabpages/page.cxx   |4 ++--
 cui/source/tabpages/paragrph.cxx   |8 
 cui/source/tabpages/tabstpge.cxx   |2 +-
 cui/source/tabpages/tpcolor.cxx|2 +-
 dbaccess/source/ui/app/AppDetailPageHelper.cxx |2 +-
 dbaccess/source/ui/dlg/ConnectionPage.cxx  |2 +-
 dbaccess/source/ui/dlg/ConnectionPage.hxx  |1 +
 dbaccess/source/ui/dlg/ConnectionPageSetup.cxx |   10 +-
 dbaccess/source/ui/dlg/ConnectionPageSetup.hxx |1 +
 dbaccess/source/ui/dlg/UserAdmin.cxx   |2 +-
 dbaccess/source/ui/dlg/UserAdmin.hxx   |1 +
 dbaccess/source/ui/querydesign/querycontroller.cxx |2 +-
 desktop/source/splash/splash.cxx   |2 +-
 extensions/source/bibliography/bibload.cxx |4 ++--
 framework/source/services/tabwindowservice.cxx |2 +-
 include/vcl/layout.hxx |2 +-
 sc/source/filter/oox/worksheethelper.cxx   |6 +++---
 sc/source/ui/attrdlg/tabpages.cxx  |2 +-
 sc/source/ui/cctrl/checklistmenu.cxx   |2 +-
 sc/source/ui/dbgui/tpsubt.cxx  |   14 ++
 sc/source/ui/dbgui/validate.cxx|2 +-
 sc/source/ui/docshell/tpstat.cxx   |2 +-
 sc/source/ui/inc/scuitphfedit.hxx  |4 
 sc/source/ui/inc/tabpages.hxx  |1 +
 sc/source/ui/inc/tpcalc.hxx|1 +
 sc/source/ui/inc/tpcompatibility.hxx   |1 +
 sc/source/ui/inc/tpdefaults.hxx|1 +
 sc/source/ui/inc/tpformula.hxx |1 +
 sc/source/ui/inc/tphf.hxx  |2 ++
 sc/source/ui/inc/tpprint.hxx   |1 +
 sc/source/ui/inc/tpstat.hxx|1 +
 sc/source/ui/inc/tpsubt.hxx|4 
 sc/source/ui/inc/tptable.hxx   |1 +
 sc/source/ui/inc/tpusrlst.hxx  |1 +
 sc/source/ui/inc/tpview.hxx|2 ++
 sc/source/ui/miscdlgs/filldlg.cxx  |4 +---
 sc/source/ui/miscdlgs/scuiautofmt.cxx  |   14 +++---
 sc/source/ui/optdlg/tpcalc.cxx |6 +++---
 sc/source/ui/optdlg/tpcompatibility.cxx|2 +-
 sc/source/ui/optdlg/tpdefaults.cxx |2 +-
 sc/source/ui/optdlg/tpformula.cxx  |2 +-
 sc/source/ui/optdlg/tpprint.cxx|2 +-
 sc/source/ui/optdlg/tpusrlst.cxx   |8 
 sc/source/ui/optdlg/tpview.cxx |4 ++--
 sc/source/ui/pagedlg/scuitphfedit.cxx  |   16 
 sc/source/ui/pagedlg/tphf.cxx  |4 ++--
 

[Libreoffice-commits] core.git: scp2/source

2015-06-06 Thread Adolfo Jayme Barrientos
 scp2/source/ooo/file_font_ooo.scp |   28 
 1 file changed, 28 deletions(-)

New commits:
commit d79fcb26fa39d3d4151c540b5574e1be3a3222c1
Author: Adolfo Jayme Barrientos fit...@ubuntu.com
Date:   Sat Jun 6 13:54:07 2015 -0500

Remove WITH_AGFA_MONOTYPE_FONTS

Undefined since 62bf424fa84b0ccd0828a474a1351b0134f27eab
and 0789ee23ae6a417d141098c411224a8af9f626d0.

We’ve never bundled these proprietary fonts.

Change-Id: I6ad6e7294504093cd0d64755ec72decf2bacc3f0
Reviewed-on: https://gerrit.libreoffice.org/16125
Tested-by: Jenkins c...@libreoffice.org
Reviewed-by: Adolfo Jayme Barrientos fit...@ubuntu.com

diff --git a/scp2/source/ooo/file_font_ooo.scp 
b/scp2/source/ooo/file_font_ooo.scp
index 597d5af..3ff8daa 100644
--- a/scp2/source/ooo/file_font_ooo.scp
+++ b/scp2/source/ooo/file_font_ooo.scp
@@ -76,31 +76,3 @@ File gid_File_FcLocal_Conf
 End
 #endif
 #endif
-
-#ifdef WNT
-#ifdef WITH_AGFA_MONOTYPE_FONTS
-STD_FONTWIN_FILE( gid_File_Fnt_albw, albw.ttf, AlbanyAMT)
-STD_FONTWIN_FILE( gid_File_Fnt_albwb, albwb.ttf, AlbanyAMT Bold)
-STD_FONTWIN_FILE( gid_File_Fnt_albwbi, albwbi.ttf, AlbanyAMT Bold Italic)
-STD_FONTWIN_FILE( gid_File_Fnt_albwi, albwi.ttf, AlbanyAMT Italic)
-STD_FONTWIN_FILE( gid_File_Fnt_andybol, andybol_.ttf, AndyMT Bold)
-STD_FONTWIN_FILE( gid_File_Fnt_andyreg, andyreg_.ttf, AndyMT)
-STD_FONTWIN_FILE( gid_File_Fnt_ans, ans_.ttf, Andale Sans)
-STD_FONTWIN_FILE( gid_File_Fnt_ansb, ansb.ttf, Andale Sans Bold)
-STD_FONTWIN_FILE( gid_File_Fnt_ansbi, ansbi___.ttf, Andale Sans Bold Italic)
-STD_FONTWIN_FILE( gid_File_Fnt_ansi, ansi.ttf, Andale Sans Italic)
-STD_FONTWIN_FILE( gid_File_Fnt_bl, bl__.ttf, BellMT)
-STD_FONTWIN_FILE( gid_File_Fnt_blb, blb_.ttf, BellMT Bold)
-STD_FONTWIN_FILE( gid_File_Fnt_blbi, blbi.ttf, BellMT Bold Italic)
-STD_FONTWIN_FILE( gid_File_Fnt_bli, bli_.ttf, BellMT Italic)
-STD_FONTWIN_FILE( gid_File_Fnt_cumbwb, cumbwb__.ttf, CumberlandAMT Bold)
-STD_FONTWIN_FILE( gid_File_Fnt_cumbwbi, cumbwbi_.ttf, CumberlandAMT Bold 
Italic)
-STD_FONTWIN_FILE( gid_File_Fnt_cumbwi, cumbwi__.ttf, CumberlandAMT Italic)
-STD_FONTWIN_FILE( gid_File_Fnt_cumbwr, cumbwr__.ttf, CumberlandAMT)
-STD_FONTWIN_FILE( gid_File_Fnt_mtsorts, mtsorts_.ttf, Monotype Sorts)
-STD_FONTWIN_FILE( gid_File_Fnt_thowb, thowb___.ttf, ThorndaleAMT Bold)
-STD_FONTWIN_FILE( gid_File_Fnt_thowbi, thowbi__.ttf, ThorndaleAMT Bold Italic)
-STD_FONTWIN_FILE( gid_File_Fnt_thowi, thowi___.ttf, ThorndaleAMT Italic)
-STD_FONTWIN_FILE( gid_File_Fnt_thowr, thowr___.ttf, ThorndaleAMT)
-#endif
-#endif
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-qa] QA Meeting Minutes - 2015-06-03

2015-06-06 Thread Robinson Tryon
Hi all,

Thanks for the great QA Meeting on Wednesday! Minutes are here:
https://wiki.documentfoundation.org/QA/Meetings/2015/June_03

Our next meeting will be in 2 weeks:
https://wiki.documentfoundation.org/QA/Meetings/2015/June_17

= Windows 64bit Native Builds =

I know that many of you are excited to test out our newest win64 bit
builds -- we've run into a few issues, and are working to have our
buildbots back up and running as soon as possible.

= Windows 10: Are you running it? =

It's very important that we have people testing LibreOffice on the
latest betas of Windows 10 before it's officially released at the end
of July. If you're not sure how to get started, join the
#libreoffice-qa IRC channel and ask for help!

= UNCONFIRMED Bug Count is UP =

The UNCONFIRMED bug count is creeping back up again. If you have some
spare time to tackle a handful of bugs, please put on your favorite
triaging hat and jump in! If you run into anything especially hard,
join us on IRC.

Best,
--R

-- 
Robinson Tryon
QA Engineer - The Document Foundation
LibreOffice Community Outreach Herald
qu...@libreoffice.org
802-379-9482 | IRC: colonelqubit on Freenode
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/

LibreOffice Gerrit News for core on 2015-06-06

2015-06-06 Thread gerrit
Moin!

* Open changes on master for project core changed in the last 25 hours:

 First time contributors doing great things! 
+ Time wraparound feature (patched, unit test fail)
  in https://gerrit.libreoffice.org/16113 from Benjamin Ni
  about module sc
+ Breeze: fix bug 91432 and add Calc InsertXBeforeAfter icons
  in https://gerrit.libreoffice.org/16114 from andreas_kainz
  about module icon-themes
+ recreate patch on osx , fixes hunk issues
  in https://gerrit.libreoffice.org/16108 from Popa Adrian Marius
  about module external
+ Upgrade firebird to 2.5.4
  in https://gerrit.libreoffice.org/16103 from Popa Adrian Marius
  about module build, external
+ tdf#89972: also copy external reference status
  in https://gerrit.libreoffice.org/16066 from Mike Kaganski
  about module sc
 End of freshness 

+ Allow building Python on Mac with GNU xargs
  in https://gerrit.libreoffice.org/16116 from Khaled Hosny
  about module external
+ tdf#75256 - Improve Sifr
  in https://gerrit.libreoffice.org/16115 from Matthias Freund
  about module icon-themes
+ Cleanup crossplatform cairo
  in https://gerrit.libreoffice.org/16111 from Mox Soini
  about module canvas, include, vcl
+ improve vclwidget clang plugin to detect incorrect constructions
  in https://gerrit.libreoffice.org/16052 from Noel Grandin
  about module basctl, basic, compilerplugins, cui, dbaccess, desktop, 
extensions, framework, include, sc, sd, sfx2, starmath, svtools, svx, sw, 
toolkit, vcl, xmlsecurity
+ make it easier to find missing sidebar components
  in https://gerrit.libreoffice.org/16101 from Markus Mohrhard
  about module framework
+ add missing component
  in https://gerrit.libreoffice.org/16102 from Markus Mohrhard
  about module sc
+ Sidebar UNO API - unit test tdf#91806
  in https://gerrit.libreoffice.org/16095 from Laurent Godard
  about module include, sc, test
+ tdf#91812: toolbar and sidebar colour buttons now update each other
  in https://gerrit.libreoffice.org/16093 from Katarina Behrens
  about module svx
+ new uno sidebar api tdf#91806
  in https://gerrit.libreoffice.org/15856 from Laurent Godard
  about module dbaccess, include, offapi, sfx2, vcl
+ loplugin:unnecessaryvirtuals
  in https://gerrit.libreoffice.org/16035 from Noel Grandin
  about module basegfx, compilerplugins, connectivity, dbaccess, extensions, 
include, lotuswordpro, svx, vcl, writerfilter


* Merged changes on master for project core changed in the last 25 hours:

+ tdf#91820 Reorganize calc's menu bar
  in https://gerrit.libreoffice.org/16090 from Yousuf Philips
+ Clear VclPtr instance reference on removed UserEvents.
  in https://gerrit.libreoffice.org/16107 from Michael Meeks
+ VclPtr - more extensive lifecycle tests.
  in https://gerrit.libreoffice.org/16100 from Michael Meeks
+ CALC: readd InsertRows/InsertCols
  in https://gerrit.libreoffice.org/16099 from Philippe Jung
+ WRITER: readd InsertRows/InsertCols
  in https://gerrit.libreoffice.org/16097 from Philippe Jung
+ Let JUnit take care of exceptions
  in https://gerrit.libreoffice.org/16094 from Noel Grandin
+ Removed B{2,3}DTuple's custom treshold equal() and equalZero() methods
  in https://gerrit.libreoffice.org/15807 from Zsolt Bölöny
+ tdf#91781 Restoring Edit entries under a new submenu and change view name
  in https://gerrit.libreoffice.org/16086 from Yousuf Philips


* Abandoned changes on master for project core changed in the last 25 hours:

+ Breeze: fix bug 91432 and add Calc InsertXBefore/After
  in https://gerrit.libreoffice.org/16112 from andreas_kainz


* Open changes needing tweaks, but being untouched for more than a week:

+ tdf#91691 - FILESAVE: Hyperlink with numeric text not saved in xlsx
  in https://gerrit.libreoffice.org/15943 from Priyanka Gaikwad
+ writefilter: removed #includes
  in https://gerrit.libreoffice.org/15850 from Andrea Gelmini
+ fdo#58194 - export DOCX Automatic indent as firstLine indent
  in https://gerrit.libreoffice.org/15768 from Joren De Cuyper
+ tdf#76334 push viewbox properties to the CustomShapeProperties
  in https://gerrit.libreoffice.org/15753 from Joren De Cuyper
+ Add very initial support for Visual Studio 2015
  in https://gerrit.libreoffice.org/15644 from Jesús Corrius
+ tdf#90494: Change gradient angle diagonally by choosing option.
  in https://gerrit.libreoffice.org/15180 from Heena Gupta
+ Rendering support for  multiStop GradientFill (OOXML LINEAR)
  in https://gerrit.libreoffice.org/12056 from Vinaya Mandke
+ Resolves tdf#83365 Other: Access across spreadsheet returns Err:504
  in https://gerrit.libreoffice.org/15363 from Henry Castro
+ tdf#46037: Exchange some uses of configurationhelper for officecfg in Wri
  in https://gerrit.libreoffice.org/15611 from Marcos Paulo de Souza
+ tdf#90494-Add new Attribute for exporting gradient angle diagonally
  in https://gerrit.libreoffice.org/15323 from Heena Gupta
+ preserve whitespaces here, tdf#88137, tdf#89254
  in https://gerrit.libreoffice.org/15375 from Markus Mohrhard
+ added 

LibreOffice Gerrit News for submodules on 2015-06-06

2015-06-06 Thread gerrit
Moin!



~~ Project dictionaries ~~

Nothing moved in the project for the last 25 hours

~~ Project translations ~~

Nothing moved in the project for the last 25 hours

~~ Project help ~~

* Open changes on master for project help changed in the last 25 hours:

+ Promote ODF Formula standard in Calc function help
  in https://gerrit.libreoffice.org/16110 from Olivier Hallot
+ Correct help file location path
  in https://gerrit.libreoffice.org/16109 from Olivier Hallot


* Merged changes on master for project help changed in the last 25 hours:

None

* Abandoned changes on master for project help changed in the last 25 hours:

None

* Open changes needing tweaks, but being untouched for more than a week:

None

Best,

Your friendly LibreOffice Gerrit Digest Mailer

Note: The bot generating this message can be found and improved here:
   
https://gerrit.libreoffice.org/gitweb?p=dev-tools.git;a=blob;f=gerritbot/send-daily-digest
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 91651] slideshow not possible

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91651

tommy27 ba...@quipo.it changed:

   What|Removed |Added

 CC||pkaplan...@gmail.com

--- Comment #13 from tommy27 ba...@quipo.it ---
*** Bug 91779 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 91779] shows only left half of slide

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91779

tommy27 ba...@quipo.it changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||ba...@quipo.it
 Resolution|--- |DUPLICATE

--- Comment #5 from tommy27 ba...@quipo.it ---
@pkaplanphd

this is a Windows issue that has been reported by other users using
hi-resolution monitors.

please continue the discussion in Bug 91651 and provide details about your
graphic card

*** This bug has been marked as a duplicate of bug 91651 ***

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 91848] Graph not shown properly in Writer

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91848

tommy27 ba...@quipo.it changed:

   What|Removed |Added

Version|unspecified |4.2.8.2 release

--- Comment #4 from tommy27 ba...@quipo.it ---
AOO is Apache OpenOffice (do a Google search)

anyway I see you are using LibO 4.2.8.2 which is an obsolete version.

you should upgrade to 4.3.7.2 or to (which is already at the end of life) or to
4.4.3.2 which is the latest release.

there are chance that the bug you see in that old release has been fixed
meanwhile.

so please, retest after upgrade and give feedback

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 91828] BASIC - CurrentValues are empty after opening a form which triggers a macro

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91828

--- Comment #18 from Lionel Elie Mamane lio...@mamane.lu ---
Christian, I don't understand. You say that in LibreOffice 4.0.6.2, you got an
empty string instead of a Variant/Empty in the variables IDString, TermID and
 CtxtID, and you say that then the Statement.ExecuteQuery(Sql) does not make
an error.

However, if these variables contain an empty string or they are Empty, the
resulting content of variable Sql is the same, so I don't see how it can make a
difference for your macro.

Anyway, if you want a string, you can easily force that by adding:

  Dim IDString  As String
  Dim TermIDAs String
  Dim CtxtIDAs String


While I read your macro, I notice that in the SQL command (query), you try to
compare an integer column to a string literal. This is not guaranteed to work
on all database management systems. For example, it does not on PostgreSQL:

  ERROR:  operator does not exist: integer = character
  HINT:  No operator matches the given name and argument type(s). You might
need to add explicit type casts.

It happens to work with HSQLDB (or MySQL/MariaDB) because those will do
automatic type conversions.

I suggest that you use integers when comparing to integer. For example
  SELECT Table_2.Nr. FROM Table_2
  WHERE Table_2.Begriff: Nr. = 0 AND Table_2.Kontext: Nr. = 2
instead of
  SELECT Table_2.Nr. FROM Table_2
  WHERE Table_2.Begriff: Nr. = '0' AND Table_2.Kontext: Nr. = '2'

This will be more portable.

In order to avoid trying to use invalid values you could do something like:

1) Leave variables IDString, TermID and CtxtID as Variant.

2) add:

  if IsEmpty(IDString) OR IsEmpty(TermID) OR IsEmpty(CtxtID) Then
exit sub
  end if

before computing the value of sql.


And actually, the most robust way to do that kind of things is not to construct
SQL commands on the fly, but to use parametrised queries:

Option Explicit

Global statement as Object

Sub make_query
  'Exit Sub
  statement =
ThisComponent.DrawPage.Forms.GetByName(frm_tbl2).activeConnection.prepareStatement(SELECT
Table_2.Nr. FROM Table_2 WHERE Table_2.Begriff: Nr. = ? AND
Table_2.Kontext: Nr. = ?)
End sub


Sub Check_rl_term_context
  Dim MainForm  As Object
  Dim ResultAs Object
  Dim Term  As Object
  Dim IDControl As Object
  Dim Context   As Object
  Dim Found As Boolean
  Dim IDValue   As Variant
  Dim TermIDAs Variant
  Dim CtxtIDAs Variant
  Found   = False
  MainForm= ThisComponent.DrawPage.Forms.GetByName(frm_tbl2)
  IDControl   = MainForm.GetByName(Nr-Feld)
  Term= MainForm.GetByName(Begriff-Feld)
  Context = MainForm.GetByName(Kontext-Feld)
  TermID  = Term.CurrentValue
  CtxtID  = Context.CurrentValue
  if IsEmpty(TermID) OR IsEmpty(CtxtID) Then
exit sub
  end if
  statement.setLong(1, termID)
  statement.setLong(2, CtxtID)

  Result = statement.ExecuteQuery()
  While (Not Found AND Result.Next)
If (StrComp(Result.GetString(1), IDValue)  0) Then
  MsgBox(Der Begriff wurde in diesen Kontext schon eingetragen.)
  Term.Reset()
  Context.Reset()
  Found = True
End If
  Wend
End Sub

Where make_query is bound to the form's when loading event.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-ux-advise] [Bug 91781] Reorganization of the menu bar for Writer

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91781

--- Comment #45 from sophie gautier.sop...@gmail.com ---
(In reply to Yousuf (Jay) Philips from comment #44)
 (In reply to V Stuart Foote from comment #43)
  Outcome of that is a major rework of Help, and a revert of any lost
  function in the menu/toolbar rework in time for the 5.0 release. But they're
  in otherwise.
 
 Doubt there would be major rework of Help, but kendy is speaking with
 olivier to see how we can fix the current problems with help as it is
 presently until a time when we can fully move to a wikihelp.

You said during ESC that you will modify the help accordingly to your changes,
if not, commits will be reverted.
 
  Sophi doesn't say it but assume she'll work that into a MozTrap sequence for
  guided review.
 
 Sophie is currently going through all the changes to make sure that she is
 okay with them and i'm working with her to answer any questions that she may
 have about it.

For the moment, we are discussing Tools  Sort and Edit  Links you wanted to
remove, I hope you have reverted that commit, but I'll check today.
 
 The ESC suggested that it would be good to have these changes in the beta 2
 release, so users can try it out. If anyone has any comments on any of the
 strings that have been changed or the repositioning of an entry or submenu
 to another menu, please do try out the menus in a daily build and let me
 know.

If the help is modified and if there is no other functionality lost, it will be
in Beta2. Of course we won't play commit and revert at this moment and give
more work than needed to l10n team. 
To answer Adolfo concerns, there will be no string changes in minor versions as
usual, rules remains unchanged.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 91879] EDIT: wrong behaviour of a form's trigger when changing the record

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91879

Lionel Elie Mamane lio...@mamane.lu changed:

   What|Removed |Added

 CC||lio...@mamane.lu

--- Comment #3 from Lionel Elie Mamane lio...@mamane.lu ---
Cannot reproduce on GNU/Linux either. Maybe this is Windows-specific?

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 91859] Libre Office Base

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91859

--- Comment #2 from Thomas Möhrling th...@web.de ---
Hallo Alex,
I will change it to explain,sorry my oldschool-Englisch.
I newcomer with LibreOfficeBase but I have programmed bevore in MS Works Base.
I have read the help-file and seen I must forgive an index-number by your bank
else it don't work.
OK,I have insert a new field with a number,than it work.
But only two or three records.
I have create a nice formular to put in my data for Bag-Racksystem who have I
invented.
I could do this also without problems with your Excel-Like-Spreadsheet but I
think it would be better with data base system.
When I put it some data after this records when I click on the forward-button
down under the sheet I think there must be open a new dataset with empty fields
to put new data into.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 89075] Crash when close a Select Firefox Theme Dialog

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89075

steve -_- st...@openmailbox.org changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED

--- Comment #4 from steve -_- st...@openmailbox.org ---
verified as of comment 2 + 3.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-ux-advise] [Bug 90452] Breeze icons poorly visible in Start Center

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90452

--- Comment #29 from steve -_- st...@openmailbox.org ---
am I crazy if I make the observation, that proper colors (dark background for
documents and grey for left panel) would solve all start center icon issues and
would give the startcenter a modern look?

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 91885] Exiting file with XIRR function causes LibreOffice Stopped Working report.

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91885

raal r...@post.cz changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||r...@post.cz
 Resolution|--- |WORKSFORME

--- Comment #1 from raal r...@post.cz ---
I can confirm with LO 4.4.3, win7 but not with Version: 5.1.0.0.alpha1+
Build ID: cba920edf88bef06a6689e7847c5789dd3ee67b7
TinderBox: Win-x86@39, Branch:master, Time: 2015-06-01_04:22:29


Seems to be fixed, so closing as worksforme.

Please, could you verify this with dev version? Thank you

http://dev-builds.libreoffice.org/daily/master/

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 91075] impress doesn't play any sound

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91075

Beluga todven...@suomi24.fi changed:

   What|Removed |Added

 Resolution|FIXED   |WORKSFORME

--- Comment #13 from Beluga todven...@suomi24.fi ---
Thanks for the update. I'll set to WORKSFORME.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 91848] Graph not shown properly in Writer

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91848

--- Comment #3 from yltang yltan...@gmail.com ---
(In reply to tommy27 from comment #1)
 please upload the original file otherwise it will be impossible to debug
 
 also tell which is the first LibO version you encountered the problem (can
 you tell if the same issue affects OOo and AOO?) and tell which is your
 Linux distro and version.
 
 set status to NEEDINFO waiting for user feedback

1 I have added a file `graph.odt`, in which the box lines will overlap the
text, and the background color run outside the box borders.

2. OS: Ubuntu 14.04 LTS

3. LibreOffice: Version: 4.2.8.2, Build ID:420m0(Build:2)

4. Sorry but I have no idea what A00 is? Could you explain? Thanks.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 90452] Breeze icons poorly visible in Start Center

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90452

--- Comment #28 from steve -_- st...@openmailbox.org ---
Created attachment 116326
  -- https://bugs.documentfoundation.org/attachment.cgi?id=116326action=edit
Pages startcenter

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-ux-advise] [Bug 90452] Breeze icons poorly visible in Start Center

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90452

--- Comment #28 from steve -_- st...@openmailbox.org ---
Created attachment 116326
  -- https://bugs.documentfoundation.org/attachment.cgi?id=116326action=edit
Pages startcenter

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[GSoC15] Chained Text Boxes - Week 2 Report

2015-06-06 Thread Matteo Campanelli
Hi,

This week we made it able to cut non-overflowing paragraph and move them to
the right place.

Also a couple problems were found:
- Style sheets are lost on the way when transferring text after overflow.
- Resizing a box does not trigger text transfer when overflow occurs.

The causes of the two seems respectively:
- style sheets are never set while creating the new text objects to be
moved around. So the solution should be simple enough.
- since editing is not activated while resizing, the usual callbacks
invoked after we find overflow are simply not activated. One way to deal
with this woud be to keep always active some editing-independent callback
or at least to activate it temporarily from
SdrTextObj;;NbcAdjustTextFrameAndHeight (called at resizing).

Matteo
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 40534] Slide tearing in LARGE screen with h/w acceleration enabled

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=40534

tommy27 ba...@quipo.it changed:

   What|Removed |Added

 CC||ba...@quipo.it
   See Also||https://bugs.documentfounda
   ||tion.org//show_bug.cgi?id=9
   ||1651

--- Comment #18 from tommy27 ba...@quipo.it ---
please guys, retest with latest LibO 4.4.3.2 and tell if situation has changed
or not.

please also take a look at Bug 91651 and it's duplicates and tell if you think
we are dealing with the same issue

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 91848] Graph not shown properly in Writer

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91848

--- Comment #5 from yltang yltan...@gmail.com ---
(In reply to tommy27 from comment #4)
 AOO is Apache OpenOffice (do a Google search)
 
 anyway I see you are using LibO 4.2.8.2 which is an obsolete version.
 
 you should upgrade to 4.3.7.2 or to (which is already at the end of life) or
 to 4.4.3.2 which is the latest release.
 
 there are chance that the bug you see in that old release has been fixed
 meanwhile.
 
 so please, retest after upgrade and give feedback

Got it.

Just upgrade to 4.4.3.2, and the problem persists.

I'll try Apache OpenOffice later.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 90452] Breeze icons poorly visible in Start Center

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90452

--- Comment #30 from Yousuf (Jay) Philips philip...@hotmail.com ---
Yes i think if we swapped the green and white between the right and left
sections (of course inverting the color of the text as well), that would be a
good combination. Document thumbnails would be alot easier to see when they are
not on a white background.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-ux-advise] [Bug 90452] Breeze icons poorly visible in Start Center

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90452

--- Comment #30 from Yousuf (Jay) Philips philip...@hotmail.com ---
Yes i think if we swapped the green and white between the right and left
sections (of course inverting the color of the text as well), that would be a
good combination. Document thumbnails would be alot easier to see when they are
not on a white background.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


Crash test update

2015-06-06 Thread Crashtest VM
New crashtest update available at 
http://dev-builds.libreoffice.org/crashtest/e152b756b3558a3619e5bedb6b258cc7f0879e90/


exportCrashes.csv
Description: Binary data


importCrash.csv
Description: Binary data


validationErrors.csv
Description: Binary data
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 91848] Graph not shown properly in Writer

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91848

--- Comment #2 from yltang yltan...@gmail.com ---
Created attachment 116323
  -- https://bugs.documentfoundation.org/attachment.cgi?id=116323action=edit
graph.odt

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 91075] impress doesn't play any sound

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91075

taboutanche arbed...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED

--- Comment #12 from taboutanche arbed...@gmail.com ---
Good morning
Today i openned my computer, and libreoffice impress
I checked the audio :
its working good!
I think you have resolved the issue.
I have not recharged Libreoffice but I have accepted the MAGEIA5 latest
updates.
THKS so much for all

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 90452] Breeze icons poorly visible in Start Center

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90452

--- Comment #27 from mi...@filmsi.net ---
Created attachment 116324
  -- https://bugs.documentfoundation.org/attachment.cgi?id=116324action=edit
LO44-sl Start Center

Hi, here is the current version, very readable, clear, as one can see.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-ux-advise] [Bug 90452] Breeze icons poorly visible in Start Center

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90452

--- Comment #27 from mi...@filmsi.net ---
Created attachment 116324
  -- https://bugs.documentfoundation.org/attachment.cgi?id=116324action=edit
LO44-sl Start Center

Hi, here is the current version, very readable, clear, as one can see.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 91859] Libre Office Base

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91859

--- Comment #3 from Thomas Möhrling th...@web.de ---
Created attachment 116325
  -- https://bugs.documentfoundation.org/attachment.cgi?id=116325action=edit
odb-file

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 90452] Breeze icons poorly visible in Start Center

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90452

--- Comment #29 from steve -_- st...@openmailbox.org ---
am I crazy if I make the observation, that proper colors (dark background for
documents and grey for left panel) would solve all start center icon issues and
would give the startcenter a modern look?

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 91885] Exiting file with XIRR function causes LibreOffice Stopped Working report

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91885

steve -_- st...@openmailbox.org changed:

   What|Removed |Added

Summary|Exiting file with XIRR  |Exiting file with XIRR
   |function causes |function causes
   |LibreOffice Stopped|LibreOffice Stopped
   |Working report.|Working report

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 90452] Breeze icons poorly visible in Start Center

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90452

--- Comment #31 from mi...@filmsi.net ---
Also in that case of inverting the two background colors the nice Breeze icons
could probably be used.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-ux-advise] [Bug 91781] Reorganization of the menu bar for Writer

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91781

--- Comment #49 from Heiko Tietze heiko.tie...@user-prompt.com ---
Similar to Sheet in Calc and Slide in Presentation we could have another menu
in Writer: Text, that contains of all functions for direct formatting. Reason
to do so is consistency over programs and a streamlined Format menu. The
objection that we want to promote Styles contradicts users' behavior, IMHO. 

The proposal is just an illustration of the idea. Content and labels are matter
of discussion. To try it yourself place the xml file in the right directory and
restart Writer. You can edit the xml directly (starting with line 451) or via
Tool  Customize.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 91892] New: Impress sidebar missing button for Word Wrap Text in Shape

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91892

Bug ID: 91892
   Summary: Impress sidebar missing button for Word Wrap Text in
Shape
   Product: LibreOffice
   Version: 5.1.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: phil.j...@free.fr
CC: philip...@hotmail.com

I have inserted a shape in Impress and added text in it:

1) I would have like Automatic Word Wrap selected by default
2) I have found no easy way to set this in sidebar. Only access I know for this
is Format - Text - Automatic text wrap

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 91890] Impress Crash font size then click on sidebar icon

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91890

Julien Nabet serval2...@yahoo.fr changed:

   What|Removed |Added

   Keywords||have-backtrace
 Status|UNCONFIRMED |NEW
 CC||serval2...@yahoo.fr
 Ever confirmed|0   |1

--- Comment #1 from Julien Nabet serval2...@yahoo.fr ---
On pc Debian x86-64 with master sources updated today, I could reproduce this.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 91897] New: Impress Crash on Format - Shadow

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91897

Bug ID: 91897
   Summary: Impress Crash on Format - Shadow
   Product: LibreOffice
   Version: 5.1.0.0.alpha0+ Master
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: critical
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: phil.j...@free.fr

Format shadow

Program received signal SIGSEGV, Segmentation fault.
0x71b9702c in rtl::Referencevcl::Window::get (this=0x708abc00ab) at
/home/philippe/src/git-repo/libreoffice/master/include/rtl/ref.hxx:142
142/home/philippe/src/git-repo/libreoffice/master/include/rtl/ref.hxx:
Aucun fichier ou dossier de ce type.

Computer frose before displaying backtrace

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 91897] Impress Crash on Format - Shadow

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91897

Julien Nabet serval2...@yahoo.fr changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #1 from Julien Nabet serval2...@yahoo.fr ---
On pc Debian x86-64 with master sources updated today, I created a brand new
file on Impress, typed test, then Menu format/Text/Shadow, no crash for me.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 91871] LO-Writer 4.4.3.2 (4.4.2.2 also) allways will crash by saving a big file of more then 15 MB containing grafics, drawings and pictures with Fatal error osl:Thread create

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91871

osnola alo...@loria.fr changed:

   What|Removed |Added

  Component|General |Writer
Version|unspecified |4.4.2.2 release
Product|Document Liberation Project |LibreOffice

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-ux-advise] [Bug 90452] Breeze icons poorly visible in Start Center

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90452

--- Comment #31 from mi...@filmsi.net ---
Also in that case of inverting the two background colors the nice Breeze icons
could probably be used.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 91888] New: Endnotes do not save correctly

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91888

Bug ID: 91888
   Summary: Endnotes do not save correctly
   Product: LibreOffice
   Version: unspecified
  Hardware: x86 (IA32)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: bugzi...@manuscripts.org.uk

Created attachment 116327
  -- https://bugs.documentfoundation.org/attachment.cgi?id=116327action=edit
A screenshot showing the unwanted extra hard return and tab

When I create a one or more endnotes in a document (using Insert -
Footnote/Endnote); save and close the file; and re-open the file; I
consistently find that a hard return and tab has been inserted before the start
of the text of the first (or only) endnote.

If I delete the hard return and tab; save; close; and re-open; they are back
again.

This effectively means that the endnote function is useless in Writer.

I'm using 4.3.7.2 on Ubuntu 14.04 LTS

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-ux-advise] [Bug 91781] Reorganization of the menu bar for Writer

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91781

--- Comment #50 from Yousuf (Jay) Philips philip...@hotmail.com ---
(In reply to Heiko Tietze from comment #49)
 Similar to Sheet in Calc and Slide in Presentation we could have another
 menu in Writer: Text, that contains of all functions for direct formatting.
 Reason to do so is consistency over programs and a streamlined Format menu.

The problem i see with a Text menu is that it would have to appear in all the
apps if we wanted consistency and Calc now has Sheet and Data, and impress has
Slide and Slide Show. Also with a menu named Text, shouldnt it have everything
related to text and not just direct formatting.

Regarding its organization, a direct formatting submenu with some of the font
direct formatting features would likely lead to confusion, as users may think
only the things under that submenu are considered direct formatting. I think
you forgot to include the paragraph... entry in the section with Spacing and
Align submenus. :D

 The objection that we want to promote Styles contradicts users' behavior,
 IMHO. 

If we want to promote styles in Writer, then maybe we should have a Styles menu
item and pull all the entries out of Format  Styles and place them into it. A
menu item like this would also be useful when we finally add style sets and
document themes. (bug 90497)

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 91893] New: Cannot create degraded color fill from sidebar

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91893

Bug ID: 91893
   Summary: Cannot create degraded color fill from sidebar
   Product: LibreOffice
   Version: 5.1.0.0.alpha0+ Master
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: phil.j...@free.fr

In sidebar I can select a degraded color but I cannot create a new Degraded
style.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 91887] New: lokdocview: dragging the mouse over widget in non-edit mode crashes the core

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91887

Bug ID: 91887
   Summary: lokdocview: dragging the mouse over widget in non-edit
mode crashes the core
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: pranav...@gmail.com

I don't know the exact the steps to reproduce this problem. But for me, most of
the time, it is when I am in non-edit mode, mouse button clicked and trying to
drag the pointer over the widget.

Here is the backtrace:

gtktiledviewer: /opt/libreoffice/sw/source/uibase/uno/unotxdoc.cxx:3222:
virtual void SwXTextDocument::postMouseEvent(int, int, int, int): Assertion
`false' failed.
[New Thread 0x7fffd6ca7700 (LWP 13116)]
[New Thread 0x7fffde5d8700 (LWP 13111)]

Program received signal SIGABRT, Aborted.
0x73ce5a98 in raise () from /lib64/libc.so.6
Missing separate debuginfos, use: debuginfo-install
adwaita-gtk2-theme-3.16.0-1.fc22.x86_64 atk-2.16.0-1.fc22.x86_64
at-spi2-atk-2.16.0-1.fc22.x86_64 at-spi2-core-2.16.0-1.fc22.x86_64
avahi-libs-0.6.31-30.fc22.x86_64 bzip2-libs-1.0.6-14.fc22.x86_64
cairo-1.14.2-1.fc22.x86_64 cups-libs-2.0.2-5.fc22.x86_64
dbus-glib-0.104-1.fc22.x86_64 dbus-libs-1.8.16-1.fc22.x86_64
elfutils-libelf-0.161-6.fc22.x86_64 elfutils-libs-0.161-6.fc22.x86_64
expat-2.1.0-10.fc22.x86_64 fontconfig-2.11.93-2.fc22.x86_64
freetype-2.5.5-1.fc22.x86_64 gdk-pixbuf2-2.31.3-1.fc22.x86_64
glib2-2.44.0-1.fc22.x86_64 gmp-6.0.0-9.fc22.x86_64 gnutls-3.3.14-1.fc22.x86_64
graphite2-1.2.4-3.fc22.x86_64 gtk2-2.24.27-1.fc22.x86_64
gvfs-1.24.1-1.fc22.x86_64 harfbuzz-0.9.40-1.fc22.x86_64
keyutils-libs-1.5.9-4.fc22.x86_64 krb5-libs-1.13.1-2.fc22.x86_64
libattr-2.4.47-9.fc22.x86_64 libbluray-0.7.0-1.fc22.x86_64
libcanberra-0.30-7.fc22.x86_64 libcanberra-gtk2-0.30-7.fc22.x86_64
libcap-2.24-7.fc22.x86_64 libcom_err-1.42.12-3.fc22.x86_64
libdrm-2.4.59-4.fc22.x86_64 libffi-3.1-7.fc22.x86_64 libgcc-5.1.1-1.fc22.x86_64
libICE-1.0.9-2.fc22.x86_64 libogg-1.3.2-2.fc22.x86_64
libpng-1.6.16-3.fc22.x86_64 libselinux-2.3-6.fc22.x86_64
libSM-1.2.2-2.fc22.x86_64 libstdc++-5.1.1-1.fc22.x86_64
libtasn1-4.4-1.fc22.x86_64 libtdb-1.3.4-1.fc22.x86_64
libtool-ltdl-2.4.2-33.fc22.x86_64 libuuid-2.26.1-1.fc22.x86_64
libvorbis-1.3.4-3.fc22.x86_64 libwayland-client-1.7.0-1.fc22.x86_64
libwayland-server-1.7.0-1.fc22.x86_64 libX11-1.6.3-1.fc22.x86_64
libXau-1.0.8-4.fc22.x86_64 libxcb-1.11-3.fc22.x86_64
libXcomposite-0.4.4-6.fc22.x86_64 libXcursor-1.1.14-4.fc22.x86_64
libXdamage-1.1.4-6.fc22.x86_64 libXext-1.3.3-2.fc22.x86_64
libXfixes-5.0.1-4.fc22.x86_64 libXi-1.7.4-2.fc22.x86_64
libXinerama-1.1.3-4.fc22.x86_64 libxml2-2.9.2-3.fc22.x86_64
libXrandr-1.4.2-2.fc22.x86_64 libXrender-0.9.8-4.fc22.x86_64
libxshmfence-1.2-1.fc22.x86_64 libxslt-1.1.28-8.fc22.x86_64
libXxf86vm-1.1.4-1.fc22.x86_64 mesa-libEGL-10.5.1-1.20150314.fc22.x86_64
mesa-libgbm-10.5.1-1.20150314.fc22.x86_64
mesa-libGL-10.5.1-1.20150314.fc22.x86_64
mesa-libglapi-10.5.1-1.20150314.fc22.x86_64 nettle-2.7.1-5.fc22.x86_64
nss-mdns-0.10-15.fc22.x86_64 openssl-libs-1.0.1k-6.fc22.x86_64
p11-kit-0.23.1-1.fc22.x86_64 PackageKit-gtk3-module-1.0.6-1.fc22.x86_64
pango-1.36.8-2.fc22.x86_64 pcre-8.36-5.fc22.x86_64 pixman-0.32.6-4.fc22.x86_64
systemd-libs-219-9.fc22.x86_64 trousers-0.3.13-3.fc22.x86_64
xz-libs-5.2.0-2.fc22.x86_64 zlib-1.2.8-7.fc22.x86_64
(gdb) bt
#0  0x73ce5a98 in raise () at /lib64/libc.so.6
#1  0x73ce772a in abort () at /lib64/libc.so.6
#2  0x73cde247 in __assert_fail_base () at /lib64/libc.so.6
#3  0x73cde2f2 in  () at /lib64/libc.so.6
#4  0x7fffc6b828f9 in SwXTextDocument::postMouseEvent(int, int, int, int)
(this=0x7fffd76d4a08, nType=2, nX=7605, nY=6795, nCount=1)
at /opt/libreoffice/sw/source/uibase/uno/unotxdoc.cxx:3222
#5  0x77ebe00f in doc_postMouseEvent(LibreOfficeKitDocument*, int, int,
int, int) (pThis=0xefcd90, nType=2, nX=7605, nY=6795, nCount=1)
at /opt/libreoffice/desktop/source/lib/init.cxx:774
#6  0x77fb5ab4 in LOKDocView_Impl::signalMotionImpl(_GdkEventButton*)
(this=0xe41b00, pEvent=0xe76960)
at /opt/libreoffice/libreofficekit/source/gtk/lokdocview.cxx:583
#7  0x77fb5668 in LOKDocView_Impl::signalMotion(_GtkWidget*,
_GdkEventButton*, _LOKDocView*) (pEvent=0xe76960, pDocView=0xe10ba0)
at /opt/libreoffice/libreofficekit/source/gtk/lokdocview.cxx:527
#8  0x778978ad in _gtk_marshal_BOOLEAN__BOXED () at
/lib64/libgtk-x11-2.0.so.0
#9  0x75bfdc45 in g_closure_invoke () at /lib64/libgobject-2.0.so.0
#10 0x75c0f4c9 in signal_emit_unlocked_R () at
/lib64/libgobject-2.0.so.0
#11 0x75c17ac2 in g_signal_emit_valist () at /lib64/libgobject-2.0.so.0
#12 0x75c1829f in g_signal_emit () at /lib64/libgobject-2.0.so.0
#13 

[Libreoffice-ux-advise] [Bug 91781] Reorganization of the menu bar for Writer

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91781

--- Comment #46 from Yousuf (Jay) Philips philip...@hotmail.com ---
(In reply to sophie from comment #45)
  Doubt there would be major rework of Help, but kendy is speaking with
  olivier to see how we can fix the current problems with help as it is
  presently until a time when we can fully move to a wikihelp.
 
 You said during ESC that you will modify the help accordingly to your
 changes, if not, commits will be reverted.

I had stated in ESC that i didnt have the skills to modify the help, though i'm
willing to try. The changes have only been pushed into master, so there isnt
anything to revert.

  Sophie is currently going through all the changes to make sure that she is
  okay with them and i'm working with her to answer any questions that she may
  have about it.
 
 For the moment, we are discussing Tools  Sort and Edit  Links you wanted
 to remove, I hope you have reverted that commit, but I'll check today.

Yes Tools  Sort has been reverted and I think Table  Sort should then be
removed, as Tools  Sort handles both scenarios or else we should find a more
suitable label for Tools  Sort. Yes the various entries in Edit (fields,
footnote/endnote, index entry, bibliography entry, hyperlink) have also been
reverted and are now found under Edit  Entries, though i'm looking for a more
suitable name for the submenu. Anyone have a suggestion?

  The ESC suggested that it would be good to have these changes in the beta 2
  release, so users can try it out. If anyone has any comments on any of the
  strings that have been changed or the repositioning of an entry or submenu
  to another menu, please do try out the menus in a daily build and let me
  know.
 
 If the help is modified and if there is no other functionality lost, it will
 be in Beta2. Of course we won't play commit and revert at this moment and
 give more work than needed to l10n team. 

If the only way these changes will land in Beta2 is if the help is done, then i
guess it wont be happening in Beta2, as it will be releasing in the next few
days, and there wont be enough time to complete the menu changes and the help
by then. As previously stated, nothing has been committed to 5.0.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 91889] New: Include in LO free font Fira from Mozilla

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91889

Bug ID: 91889
   Summary: Include in LO free font Fira from Mozilla
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: dicolle...@free.fr

This free font from Mozilla looks great:
https://mozilla.github.io/Fira/
https://github.com/mozilla/Fira

We should bundle it in LO.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-commits] core.git: helpcontent2

2015-06-06 Thread Andras Timar
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 373c276e8ac2550aacaca855ba4d3e89b3e2f2ca
Author: Andras Timar andras.ti...@collabora.com
Date:   Sat Jun 6 12:07:36 2015 +0200

Updated core
Project: help  06ee18277cd086b33713a30c03252e8a8763a026

remove accelerator key marker underscore from help string

Change-Id: I5aca05f6a76827e1e56fb99764a5a346f64245dc

diff --git a/helpcontent2 b/helpcontent2
index f5fa46e..06ee182 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit f5fa46ed8626910d710fd535518ddf9e756f9356
+Subproject commit 06ee18277cd086b33713a30c03252e8a8763a026
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: source/text

2015-06-06 Thread Andras Timar
 source/text/scalc/05/OpenCL_options.xhp |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 06ee18277cd086b33713a30c03252e8a8763a026
Author: Andras Timar andras.ti...@collabora.com
Date:   Sat Jun 6 12:07:36 2015 +0200

remove accelerator key marker underscore from help string

Change-Id: I5aca05f6a76827e1e56fb99764a5a346f64245dc

diff --git a/source/text/scalc/05/OpenCL_options.xhp 
b/source/text/scalc/05/OpenCL_options.xhp
index 2237263..c434b31 100644
--- a/source/text/scalc/05/OpenCL_options.xhp
+++ b/source/text/scalc/05/OpenCL_options.xhp
@@ -49,7 +49,7 @@ OpenCL™ is the first open, royalty-free standard for 
cross-platform, parallel
 paragraph role=paragraph id=par_id300912 xml-lang=en-US 
l10n=NEWemphExcel A1:/emph/paragraph
 paragraph role=paragraph id=par_id9534592 xml-lang=en-US 
l10n=NEWemphExcel R1C1:/emph/paragraph
 paragraph role=heading id=par_id4969328 xml-lang=en-US l10n=NEW 
level=2OpenCL Settings/paragraph
-paragraph role=heading id=par_id9635914 xml-lang=en-US l10n=NEW 
level=3Use Open_CL only for a subset of operations/paragraph
+paragraph role=heading id=par_id9635914 xml-lang=en-US l10n=NEW 
level=3Use OpenCL only for a subset of operations/paragraph
 paragraph role=paragraph id=par_id2476577 xml-lang=en-US l10n=NEWUse 
OpenCL only for some of the operations that spreadsheet formulas are translated 
to./paragraph
 paragraph role=heading id=par_id4217047 xml-lang=en-US l10n=NEW 
level=3Minimum data size for OpenCL use:/paragraph
 paragraph role=paragraph id=par_id2629474 xml-lang=en-US l10n=NEWAn 
approximate lower limit on the number of data cells a spreadsheet formula 
should use for OpenCL to be considered./paragraph
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 91651] slideshow not possible

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91651

--- Comment #14 from pkaplan...@gmail.com ---
(In reply to tommy27 from comment #13)
 *** Bug 91779 has been marked as a duplicate of this bug. ***

My graphics card is Integrated Intel® HD Graphics 4400 and even when I reduce
the resolution, I don't get the right display of the slide

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 91890] New: Impress Crash font size then click on sidebar icon

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91890

Bug ID: 91890
   Summary: Impress Crash font size then click on sidebar icon
   Product: LibreOffice
   Version: 5.1.0.0.alpha0+ Master
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: critical
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: phil.j...@free.fr

Editing the title of a slide
Open the Font size popup in the sidebar
While open click on the Transition icon to open the transition panel

soffice.bin:
/home/philippe/src/git-repo/libreoffice/master/vcl/source/window/layout.cxx
:1390 : virtual const vcl::Window* VclFrame::get_child() const:  l'assertion «
GetChildCount() == 2 » a échoué.

Program received signal SIGABRT, Aborted.
0x774ddcc9 in __GI_raise (sig=sig@entry=6) at
../nptl/sysdeps/unix/sysv/linux/raise.c:56
56../nptl/sysdeps/unix/sysv/linux/raise.c: Aucun fichier ou dossier de ce
type.
(gdb) bt
#0  0x774ddcc9 in __GI_raise (sig=sig@entry=6) at
../nptl/sysdeps/unix/sysv/linux/raise.c:56
#1  0x774e10d8 in __GI_abort () at abort.c:89
#2  0x774d6b86 in __assert_fail_base (fmt=0x7fffde6db05f %s%s%s :%u :
%s%s l'assertion « %s » a échoué.\n%n, 
assertion=assertion@entry=0x7224f2c9 GetChildCount() == 2, 
file=file@entry=0x7224f250
/home/philippe/src/git-repo/libreoffice/master/vcl/source/window/layout.cxx,
line=line@entry=1390, 
function=function@entry=0x72252d60 VclFrame::get_child()
const::__PRETTY_FUNCTION__ virtual const vcl::Window* VclFrame::get_child()
const)
at assert.c:92
#3  0x774d6c32 in __GI___assert_fail (assertion=0x7224f2c9
GetChildCount() == 2, 
file=0x7224f250
/home/philippe/src/git-repo/libreoffice/master/vcl/source/window/layout.cxx,
line=1390, 
function=0x72252d60 VclFrame::get_child() const::__PRETTY_FUNCTION__
virtual const vcl::Window* VclFrame::get_child() const) at assert.c:101
#4  0x71c3ba7f in VclFrame::get_child (this=0x3aebb80) at
/home/philippe/src/git-repo/libreoffice/master/vcl/source/window/layout.cxx:1390
#5  0x71c3b400 in VclFrame::calculateRequisition (this=0x3aebb80) at
/home/philippe/src/git-repo/libreoffice/master/vcl/source/window/layout.cxx:1306
#6  0x71c351a9 in VclContainer::GetOptimalSize (this=0x3aebb80) at
/home/philippe/src/git-repo/libreoffice/master/vcl/source/window/layout.cxx:35
#7  0x71ce7bc2 in vcl::Window::get_ungrouped_preferred_size
(this=0x3aebb80)
at
/home/philippe/src/git-repo/libreoffice/master/vcl/source/window/window2.cxx:1761
#8  0x71ce7c97 in vcl::Window::get_preferred_size (this=0x3aebb80) at
/home/philippe/src/git-repo/libreoffice/master/vcl/source/window/window2.cxx:1776
#9  0x71c3573a in VclContainer::getLayoutRequisition (rWindow=...) at
/home/philippe/src/git-repo/libreoffice/master/vcl/source/window/layout.cxx:118
#10 0x71c35c3e in VclBox::calculateRequisition (this=0x1dd3570) at
/home/philippe/src/git-repo/libreoffice/master/vcl/source/window/layout.cxx:190
#11 0x71c351a9 in VclContainer::GetOptimalSize (this=0x1dd3570) at
/home/philippe/src/git-repo/libreoffice/master/vcl/source/window/layout.cxx:35
#12 0x71ce7bc2 in vcl::Window::get_ungrouped_preferred_size
(this=0x1dd3570)
at
/home/philippe/src/git-repo/libreoffice/master/vcl/source/window/window2.cxx:1761
#13 0x71ce7c97 in vcl::Window::get_preferred_size (this=0x1dd3570) at
/home/philippe/src/git-repo/libreoffice/master/vcl/source/window/window2.cxx:1776
#14 0x71c3573a in VclContainer::getLayoutRequisition (rWindow=...) at
/home/philippe/src/git-repo/libreoffice/master/vcl/source/window/layout.cxx:118
#15 0x7fffb85a5b1b in PanelLayout::GetOptimalSize (this=0x164f400) at
/home/philippe/src/git-repo/libreoffice/master/svx/source/sidebar/PanelLayout.cxx:43
#16 0x7fffb85a5d49 in PanelLayout::setPosSizePixel (this=0x164f400, nX=0,
nY=0, nWidth=0, nHeight=0, nFlags=Size)
at
/home/philippe/src/git-repo/libreoffice/master/svx/source/sidebar/PanelLayout.cxx:89
#17 0x71ce61c6 in vcl::Window::SetSizePixel (this=0x164f400,
rNewSize=...)
at
/home/philippe/src/git-repo/libreoffice/master/vcl/source/window/window2.cxx:1420
#18 0x71ce6315 in vcl::Window::SetOutputSizePixel (this=0x164f400,
rNewSize=...)
at
/home/philippe/src/git-repo/libreoffice/master/vcl/source/window/window2.cxx:1433
#19 0x7fffba06682a in sd::sidebar::PanelBase::Resize (this=0x3befd10) at
/home/philippe/src/git-repo/libreoffice/master/sd/source/ui/sidebar/PanelBase.cxx:69
#20 0x71c30286 in vcl::Window::ImplCallResize (this=0x3befd10) at
/home/philippe/src/git-repo/libreoffice/master/vcl/source/window/event.cxx:457
#21 0x71cf7a44 in vcl::Window::Show (this=0x3befd10, bVisible=true,
nFlags=NONE) at

[Libreoffice-bugs] [Bug 91891] New: Impress: Edit with external tool does not reload image

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91891

Bug ID: 91891
   Summary: Impress: Edit with external tool does not reload image
   Product: LibreOffice
   Version: 5.1.0.0.alpha0+ Master
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: major
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: phil.j...@free.fr

I have an Impress presentation with image inserted from a file and cropped. I
want to save space getting rid of the invisible part.
Right click on it - Edit with external tools
Gimp opens editing image SDG4D0F.png
I select a rectangular area and resize to the selection.
I save the image erasing the previous png
I close Gimp
Back in Impress, I do again Edit with external tools. 

I expect to see only a part of the image (the previously selected rectangular
zone) 

I get the full image displayed.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 91887] lokdocview: dragging the mouse over widget in non-edit mode crashes the core

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91887

--- Comment #2 from Pranav Kant pranav...@gmail.com ---
This is I do :

When in non-edit mode, I am hovering my mouse pointer on the widget (say going
from left to right side of the widget), and then suddenly press the mouse
button for few seconds while still going towards right side, it crashes for me.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 91887] lokdocview: dragging the mouse over widget in non-edit mode crashes the core

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91887

--- Comment #3 from Pranav Kant pranav...@gmail.com ---
I found another way to reproduce this bug which works in both edit and non-edit
mode

In short, you just have to do a double click with your second click's release
not at the same position where you clicked your first click.

Let me know if it works for you.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 91898] uno wrapper commands for find toolbar and extension manager

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91898

Yousuf (Jay) Philips philip...@hotmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 91892] Impress sidebar missing button for Word Wrap Text in Shape

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91892

--- Comment #2 from Yousuf (Jay) Philips philip...@hotmail.com ---
If it had to go into the sidebar, i'd assume a checkbox in the 'area' section,
as i doubt we could place it in the character or paragraph sections, and likely
titled 'Wrap text to fit in shape'.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


LOKDocView crashes LO core (?)

2015-06-06 Thread Pranav Kant
This is not just the problem on the feature branch I am working on,
but also on the master. I suspect this to be a problem in LO core
rather than the widget. I reported the bug[1] here. As mentioned there
seems to be some glitch in sw/source/uibase/uno/unotxdoc.cxx:3222 (?),
when the clicked mouse pointer is dragged over the widget in view
(non-edit) mode. I have attached the backtrace in the bug report.

Any comments/pointers would be helpful.

-- 
Regards,
Pranav Kant
http://pranavk.me
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-ux-advise] [Bug 91781] Reorganization of the menu bar for Writer

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91781

--- Comment #48 from Heiko Tietze heiko.tie...@user-prompt.com ---
Created attachment 116329
  -- https://bugs.documentfoundation.org/attachment.cgi?id=116329action=edit
Separate menu for direct formatting - menu tweak

xml file has to be placed at
/.config/libreofficedev/4/user/config/soffice.cfg/modules/swriter

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-ux-advise] [Bug 91781] Reorganization of the menu bar for Writer

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91781

--- Comment #47 from Heiko Tietze heiko.tie...@user-prompt.com ---
Created attachment 116328
  -- https://bugs.documentfoundation.org/attachment.cgi?id=116328action=edit
Separate menu for direct formatting

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 87234] breeze icon theme is incomplete

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87234
Bug 87234 depends on bug 91432, which changed state.

Bug 91432 Summary: Breeze theme - no printer symbol with large icons UI
https://bugs.documentfoundation.org/show_bug.cgi?id=91432

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 91432] Breeze theme - no printer symbol with large icons UI

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91432

Yousuf (Jay) Philips philip...@hotmail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 91887] lokdocview: dragging the mouse over widget in non-edit mode crashes the core

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91887

Julien Nabet serval2...@yahoo.fr changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #1 from Julien Nabet serval2...@yahoo.fr ---
Could you be a bit more specific?
What do you mean when you say to drag the pointer over the widget?
Which widget?

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 91894] New: Impress Cut paste of a line selects the whole table

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91894

Bug ID: 91894
   Summary: Impress Cut  paste of a line selects the whole table
   Product: LibreOffice
   Version: 5.1.0.0.alpha0+ Master
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: phil.j...@free.fr

Impress: 
- create a table, put text in it
- select line 1, cut it
- paste it in line 2

I expect: line 2 to be selected

I get: whole table is selected

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 91895] New: Impress Cut paste in table sometimes loses font style

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91895

Bug ID: 91895
   Summary: Impress Cut  paste in table sometimes loses font
style
   Product: LibreOffice
   Version: 5.1.0.0.alpha0+ Master
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: phil.j...@free.fr

I have a table 5x8
I copy a text from a cell into another
Text style is not kept.

No specific style applied to any of the cells. If I go in the cell and type,
the font style is coherent with the source. If I paste font style formatting is
altered.

I have added / removed lines at the end of the table.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 91892] Impress sidebar missing button for Word Wrap Text in Shape

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91892

Yousuf (Jay) Philips philip...@hotmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from Yousuf (Jay) Philips philip...@hotmail.com ---
This behaviour happens in all apps and is there since 3.3.0. Ideally 'word wrap
text in shape' would automatically be checked once a shape is drawn.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-commits] core.git: wizards/source

2015-06-06 Thread Jean-Pierre Ledure
 wizards/source/access2base/Recordset.xba |   21 +
 1 file changed, 9 insertions(+), 12 deletions(-)

New commits:
commit 94c7c30939e08a5d68229e524087605d5883e3cd
Author: Jean-Pierre Ledure j...@ledure.be
Date:   Sat Jun 6 15:35:51 2015 +0200

Access2Base - Correct behaviour of MoveNext, MovePrevious

Bug in MoveNext and MovePrevious methods of Recordset class module
Reported in https://forum.openoffice.org/en/forum/viewtopic.php?f=47t=76640

Change-Id: Ib094eb61dbb3c6b8656a098c7de41da40cc20648

diff --git a/wizards/source/access2base/Recordset.xba 
b/wizards/source/access2base/Recordset.xba
index d97a0d1..28bc2b1 100644
--- a/wizards/source/access2base/Recordset.xba
+++ b/wizards/source/access2base/Recordset.xba
@@ -920,18 +920,15 @@ Dim l As Long, lRow As Long
End If
End Select
 
-   Select Case True
-   Case .isBeforeFirst()
-   _BOF = True
-   _Move = False
-   Case .isAfterlast()
-   _EOF = True
-   _Move = False
-   Case Else
-   If .rowDeleted() Then Goto Error_RowDeleted
-   If .rowUpdated() Then .refreshRow()
-   _Move = True
-   End Select
+   _BOF = .isBeforeFirst() apos;  
https://forum.openoffice.org/en/forum/viewtopic.php?f=47amp;t=76640
+   _EOF = .isAfterlast()
+   If _BOF Or _EOF Then
+   _Move = False
+   Else
+   If .rowDeleted() Then Goto Error_RowDeleted
+   If .rowUpdated() Then .refreshRow()
+   _Move = True
+   End If
End With
 
 Exit_Function:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 91886] New: Make font installation optional

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91886

Bug ID: 91886
   Summary: Make font installation optional
   Product: LibreOffice
   Version: unspecified
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Installation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: pet...@mujmail.cz

Please introduce new option to Custom installation that allow to disable font
installation to the system.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-commits] core.git: Branch 'libreoffice-5-0' - helpcontent2

2015-06-06 Thread Andras Timar
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f114a15f556d6ed3549591df74300f44102a469f
Author: Andras Timar andras.ti...@collabora.com
Date:   Sat Jun 6 12:07:36 2015 +0200

Updated core
Project: help  b8161fa15ecac10491eea5ed752a456e3edfcaf6

remove accelerator key marker underscore from help string

Change-Id: I5aca05f6a76827e1e56fb99764a5a346f64245dc
(cherry picked from commit 06ee18277cd086b33713a30c03252e8a8763a026)

diff --git a/helpcontent2 b/helpcontent2
index d7cbd22..b8161fa 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit d7cbd22f6da101618b489b42e6990d74fd820423
+Subproject commit b8161fa15ecac10491eea5ed752a456e3edfcaf6
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: Branch 'libreoffice-5-0' - source/text

2015-06-06 Thread Andras Timar
 source/text/scalc/05/OpenCL_options.xhp |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b8161fa15ecac10491eea5ed752a456e3edfcaf6
Author: Andras Timar andras.ti...@collabora.com
Date:   Sat Jun 6 12:07:36 2015 +0200

remove accelerator key marker underscore from help string

Change-Id: I5aca05f6a76827e1e56fb99764a5a346f64245dc
(cherry picked from commit 06ee18277cd086b33713a30c03252e8a8763a026)

diff --git a/source/text/scalc/05/OpenCL_options.xhp 
b/source/text/scalc/05/OpenCL_options.xhp
index 2237263..c434b31 100644
--- a/source/text/scalc/05/OpenCL_options.xhp
+++ b/source/text/scalc/05/OpenCL_options.xhp
@@ -49,7 +49,7 @@ OpenCL™ is the first open, royalty-free standard for 
cross-platform, parallel
 paragraph role=paragraph id=par_id300912 xml-lang=en-US 
l10n=NEWemphExcel A1:/emph/paragraph
 paragraph role=paragraph id=par_id9534592 xml-lang=en-US 
l10n=NEWemphExcel R1C1:/emph/paragraph
 paragraph role=heading id=par_id4969328 xml-lang=en-US l10n=NEW 
level=2OpenCL Settings/paragraph
-paragraph role=heading id=par_id9635914 xml-lang=en-US l10n=NEW 
level=3Use Open_CL only for a subset of operations/paragraph
+paragraph role=heading id=par_id9635914 xml-lang=en-US l10n=NEW 
level=3Use OpenCL only for a subset of operations/paragraph
 paragraph role=paragraph id=par_id2476577 xml-lang=en-US l10n=NEWUse 
OpenCL only for some of the operations that spreadsheet formulas are translated 
to./paragraph
 paragraph role=heading id=par_id4217047 xml-lang=en-US l10n=NEW 
level=3Minimum data size for OpenCL use:/paragraph
 paragraph role=paragraph id=par_id2629474 xml-lang=en-US l10n=NEWAn 
approximate lower limit on the number of data cells a spreadsheet formula 
should use for OpenCL to be considered./paragraph
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: icon-themes/breeze

2015-06-06 Thread andreas_ka
 icon-themes/breeze/cmd/lc_combobox.png |binary
 icon-themes/breeze/cmd/lc_hideslide.png|binary
 icon-themes/breeze/cmd/lc_insertcolumns.png|binary
 icon-themes/breeze/cmd/lc_insertcolumnsafter.png   |binary
 icon-themes/breeze/cmd/lc_insertcolumnsbefore.png  |binary
 icon-themes/breeze/cmd/lc_insertformcombo.png  |binary
 icon-themes/breeze/cmd/lc_insertrowsafter.png  |binary
 icon-themes/breeze/cmd/lc_insertrowsbefore.png |binary
 icon-themes/breeze/cmd/lc_newdoc.png   |binary
 icon-themes/breeze/cmd/lc_presentationcurrentslide.png |binary
 icon-themes/breeze/cmd/lc_print.png|binary
 icon-themes/breeze/cmd/lc_printdefault.png |binary
 icon-themes/breeze/cmd/lc_printersetup.png |binary
 icon-themes/breeze/cmd/sc_doubleclicktextedit.png  |binary
 icon-themes/breeze/cmd/sc_drawtext.png |binary
 icon-themes/breeze/cmd/sc_hideslide.png|binary
 icon-themes/breeze/cmd/sc_insertcolumns.png|binary
 icon-themes/breeze/cmd/sc_insertcolumnsafter.png   |binary
 icon-themes/breeze/cmd/sc_insertcolumnsbefore.png  |binary
 icon-themes/breeze/cmd/sc_insertrowsafter.png  |binary
 icon-themes/breeze/cmd/sc_insertrowsbefore.png |binary
 icon-themes/breeze/cmd/sc_newdoc.png   |binary
 icon-themes/breeze/cmd/sc_print.png|binary
 icon-themes/breeze/cmd/sc_printdefault.png |binary
 icon-themes/breeze/cmd/sc_printersetup.png |binary
 icon-themes/breeze/cmd/sc_text.png |binary
 icon-themes/breeze/cmd/sc_texttoolbox.png  |binary
 icon-themes/breeze/framework/res/templates_32.png  |binary
 icon-themes/breeze/res/im30827.png |binary
 icon-themes/breeze/res/otp_48_8.png|binary
 30 files changed

New commits:
commit 9ebaed23d6b9af59f18abdddb500516f0f60a8fe
Author: andreas_ka kain...@gmail.com
Date:   Sat Jun 6 01:13:30 2015 +0200

Breeze: fix bug 91432 and add Calc InsertXBeforeAfter icons

Change-Id: I2d350ffe117bdc6cc5a63429725fff36c4e760b8
Reviewed-on: https://gerrit.libreoffice.org/16114
Tested-by: Jenkins c...@libreoffice.org
Reviewed-by: Yousuf Philips philip...@hotmail.com

diff --git a/icon-themes/breeze/cmd/lc_combobox.png 
b/icon-themes/breeze/cmd/lc_combobox.png
index 2c5de69..268dbf7 100644
Binary files a/icon-themes/breeze/cmd/lc_combobox.png and 
b/icon-themes/breeze/cmd/lc_combobox.png differ
diff --git a/icon-themes/breeze/cmd/lc_hideslide.png 
b/icon-themes/breeze/cmd/lc_hideslide.png
index 7637441..87f944b 100644
Binary files a/icon-themes/breeze/cmd/lc_hideslide.png and 
b/icon-themes/breeze/cmd/lc_hideslide.png differ
diff --git a/icon-themes/breeze/cmd/lc_insertcolumns.png 
b/icon-themes/breeze/cmd/lc_insertcolumns.png
index 1930643..afec305 100644
Binary files a/icon-themes/breeze/cmd/lc_insertcolumns.png and 
b/icon-themes/breeze/cmd/lc_insertcolumns.png differ
diff --git a/icon-themes/breeze/cmd/lc_insertcolumnsafter.png 
b/icon-themes/breeze/cmd/lc_insertcolumnsafter.png
new file mode 100644
index 000..7fbf6b3
Binary files /dev/null and b/icon-themes/breeze/cmd/lc_insertcolumnsafter.png 
differ
diff --git a/icon-themes/breeze/cmd/lc_insertcolumnsbefore.png 
b/icon-themes/breeze/cmd/lc_insertcolumnsbefore.png
new file mode 100644
index 000..afec305
Binary files /dev/null and b/icon-themes/breeze/cmd/lc_insertcolumnsbefore.png 
differ
diff --git a/icon-themes/breeze/cmd/lc_insertformcombo.png 
b/icon-themes/breeze/cmd/lc_insertformcombo.png
index 2c5de69..268dbf7 100644
Binary files a/icon-themes/breeze/cmd/lc_insertformcombo.png and 
b/icon-themes/breeze/cmd/lc_insertformcombo.png differ
diff --git a/icon-themes/breeze/cmd/lc_insertrowsafter.png 
b/icon-themes/breeze/cmd/lc_insertrowsafter.png
new file mode 100644
index 000..478420f
Binary files /dev/null and b/icon-themes/breeze/cmd/lc_insertrowsafter.png 
differ
diff --git a/icon-themes/breeze/cmd/lc_insertrowsbefore.png 
b/icon-themes/breeze/cmd/lc_insertrowsbefore.png
new file mode 100644
index 000..f2134a0
Binary files /dev/null and b/icon-themes/breeze/cmd/lc_insertrowsbefore.png 
differ
diff --git a/icon-themes/breeze/cmd/lc_newdoc.png 
b/icon-themes/breeze/cmd/lc_newdoc.png
index 307d529..4a2fa0c 100644
Binary files a/icon-themes/breeze/cmd/lc_newdoc.png and 
b/icon-themes/breeze/cmd/lc_newdoc.png differ
diff --git a/icon-themes/breeze/cmd/lc_presentationcurrentslide.png 
b/icon-themes/breeze/cmd/lc_presentationcurrentslide.png
index 9cae541..5706591 100644
Binary files a/icon-themes/breeze/cmd/lc_presentationcurrentslide.png and 
b/icon-themes/breeze/cmd/lc_presentationcurrentslide.png differ
diff --git a/icon-themes/breeze/cmd/lc_print.png 
b/icon-themes/breeze/cmd/lc_print.png
index c84c921..ab17682 100644
Binary files a/icon-themes/breeze/cmd/lc_print.png and 

[Libreoffice-bugs] [Bug 91770] Crash on closing on Windows

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91770

Yousuf (Jay) Philips philip...@hotmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||michael.me...@collabora.com
 Ever confirmed|0   |1

--- Comment #8 from Yousuf (Jay) Philips philip...@hotmail.com ---
(In reply to Timur from comment #7)
 If it's Calc, then looks similar to Bug 91214.

Looking at the crash log, it is likely different, but we'd need a dev to
confirm it.

@Michael: As you checked the crash log in the other bug can you see if this one
is a duplicate.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


Adding a image to a gridcontrol row using BASIC

2015-06-06 Thread Fernand Vanrie

Hello,

on a Openoffice wiki page i found some JAVA code to add a image into a 
GridControl Row
what i need is how to make a Object array in BASIC who supports 
graphics and octher data


thanks for any hint

The main change in milestone 3 regarding DataModel is the possibility to 
add not only text but also images. That's why addRow-method has as 
second parameter no more string array but object array. Futher supported 
types are int, double, float.


/Java/

 Object  dataModel=  xMultiComponentFactory.createInstanceWithContext(
com.sun.star.awt.grid.DefaultGridDataModel, m_xContext);
 XGridDataModel xGridDataModel=  (XGridDataModel)  UnoRuntime.queryInterface(
XGridDataModel.class, dataModel);
 Object  oGraphicProvider=  
xMultiComponentFactory.createInstanceWithContext(com.sun.star.graphic.GraphicProvider,
 m_xContext);
 XGraphicProvider xGraphicProvider=  (XGraphicProvider)  
UnoRuntime.queryInterface(XGraphicProvider.class, oGraphicProvider);
 // create the graphic object
 PropertyValue[]  aPropertyValues=  new  PropertyValue[1];
 PropertyValue aPropertyValue=  new  PropertyValue();
 aPropertyValue.Name  =  URL;
 aPropertyValue.Value  =  file:///c:/myimages/testimage.png;
 aPropertyValues[0]  =  aPropertyValue;
 XGraphic xGraphic=  xGraphicProvider.queryGraphic(aPropertyValues);
 xGridDataModel.addRow(1,new  Object[]{xGraphic,1,2,1.3});
 //one row which contains only text
 xGridDataModel.addRow(2,new  Object[]  {2,1,2,2,1,3}  );


___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: Q: How to get the path of all opened spreadsheet documents

2015-06-06 Thread Andrew Pitonyak
No time to find the solution now But I have done this sort of thing in 
basic.

You enumerate the open components from the desktop object and check of the 
component is a calc document.

In your case do you only care about documents that have been saved... Ignoring 
new never saved to disk docs?

Think I can find a basic example of it helps

On Jun 4, 2015 10:35 PM, Zhang, William william.zh...@ptn.advantest.com 
wrote:

 Hi,

  

 Request:

 In RedHat7, I want to get the path of all opened spreadsheet documents with 
 Java.

  

 What I’ve done:

 1.   I used Runtime.exec(cmd…) with Java code, the ‘cmd’ was defined with 
 “ps –ef | grep xxx”

 -if only one spreadsheet document opened, the returned info list the correct 
 document, I can parse it and get the file path

 -but if multi spreadsheet documents opened, the returned process still only 
 list the first document, I cannot get other documents.

    2.  I also test in bash, it seems “ps -ef” cannot list all files.

  

 So , I want to know is there any other way to do it. such as using UNO 
 service with libreoffice API to get it.

 Anyone who knows it is much appreciate.

  

 Best Regards

 William

  
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 91896] New: Can't insert PDF file into Writer document

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91896

Bug ID: 91896
   Summary: Can't insert PDF file into Writer document
   Product: LibreOffice
   Version: 4.3.7.2 rc
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: patrick.sedgw...@btinternet.com

Created attachment 116330
  -- https://bugs.documentfoundation.org/attachment.cgi?id=116330action=edit
an excerpt from an official UK regulatory document

1. created Writer doc.

2. Insert  File...  [choose a PDF file]

3. Result: following message box...
   ==
LibreOffice 4.3.7.2
Read-Error.
Error reading file.

OK
   ==

Notes: the same PDF file, which LibreOffice cannot insert, can be opened by:
LibreOffice itself; Acrobat Reader; and Serif PagePlus X8.

I'm attaching an example PDF, but the bug is not limited to this single PDF. It
occurs for any PDF I try to insert into the Writer document.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 91898] New: uno wrapper commands for find toolbar and extension manager

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91898

Bug ID: 91898
   Summary: uno wrapper commands for find toolbar and extension
manager
   Product: LibreOffice
   Version: 5.1.0.0.alpha0+ Master
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com
Blocks: 86899

The menu bar xml files have non-uno commands for Edit  Find
(vnd.sun.star.findbar:FocusToFindbar) and Tools  Extension Manager
(service:com.sun.star.deployment.ui.PackageManagerDialog), so it would be
useful to wrap these in uno commands so they can tracked with stats.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 86899] Meta: Requests for the addition of uno commands

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86899

Yousuf (Jay) Philips philip...@hotmail.com changed:

   What|Removed |Added

 Depends on||91898

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 91898] uno wrapper commands for find toolbar and extension manager

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91898

Yousuf (Jay) Philips philip...@hotmail.com changed:

   What|Removed |Added

 Whiteboard||needsDevEval topicUI

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 91887] lokdocview: dragging the mouse over widget in non-edit mode crashes the core

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91887

--- Comment #4 from Julien Nabet serval2...@yahoo.fr ---
I still fail to reproduce this.
Certainly someone else will reproduce this.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 91879] EDIT: wrong behaviour of a form's trigger when changing the record

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91879

--- Comment #4 from christian_k...@gmx.net ---
Msgbox must be closed each time before continue, and macros must be enabled. 

Before I could open the LO 4.4-created example with OOo 3.2.1 (Debian/Squeeze),
I had to start a recovering process.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-commits] core.git: Branch 'libreoffice-5-0' - icon-themes/breeze

2015-06-06 Thread andreas_ka
 icon-themes/breeze/cmd/lc_combobox.png |binary
 icon-themes/breeze/cmd/lc_hideslide.png|binary
 icon-themes/breeze/cmd/lc_insertcolumns.png|binary
 icon-themes/breeze/cmd/lc_insertcolumnsafter.png   |binary
 icon-themes/breeze/cmd/lc_insertcolumnsbefore.png  |binary
 icon-themes/breeze/cmd/lc_insertformcombo.png  |binary
 icon-themes/breeze/cmd/lc_insertrowsafter.png  |binary
 icon-themes/breeze/cmd/lc_insertrowsbefore.png |binary
 icon-themes/breeze/cmd/lc_newdoc.png   |binary
 icon-themes/breeze/cmd/lc_presentationcurrentslide.png |binary
 icon-themes/breeze/cmd/lc_print.png|binary
 icon-themes/breeze/cmd/lc_printdefault.png |binary
 icon-themes/breeze/cmd/lc_printersetup.png |binary
 icon-themes/breeze/cmd/sc_doubleclicktextedit.png  |binary
 icon-themes/breeze/cmd/sc_drawtext.png |binary
 icon-themes/breeze/cmd/sc_hideslide.png|binary
 icon-themes/breeze/cmd/sc_insertcolumns.png|binary
 icon-themes/breeze/cmd/sc_insertcolumnsafter.png   |binary
 icon-themes/breeze/cmd/sc_insertcolumnsbefore.png  |binary
 icon-themes/breeze/cmd/sc_insertrowsafter.png  |binary
 icon-themes/breeze/cmd/sc_insertrowsbefore.png |binary
 icon-themes/breeze/cmd/sc_newdoc.png   |binary
 icon-themes/breeze/cmd/sc_print.png|binary
 icon-themes/breeze/cmd/sc_printdefault.png |binary
 icon-themes/breeze/cmd/sc_printersetup.png |binary
 icon-themes/breeze/cmd/sc_text.png |binary
 icon-themes/breeze/cmd/sc_texttoolbox.png  |binary
 icon-themes/breeze/framework/res/templates_32.png  |binary
 icon-themes/breeze/res/im30827.png |binary
 icon-themes/breeze/res/otp_48_8.png|binary
 30 files changed

New commits:
commit 13a630e20aeb62709c74d3f62ae8a1fee2506c31
Author: andreas_ka kain...@gmail.com
Date:   Sat Jun 6 01:13:30 2015 +0200

Breeze: fix tdf#91432 and add Calc InsertXBeforeAfter icons

Reviewed-on: https://gerrit.libreoffice.org/16114
Tested-by: Jenkins c...@libreoffice.org
Reviewed-by: Yousuf Philips philip...@hotmail.com
(cherry picked from commit 9ebaed23d6b9af59f18abdddb500516f0f60a8fe)

Change-Id: I2d350ffe117bdc6cc5a63429725fff36c4e760b8

diff --git a/icon-themes/breeze/cmd/lc_combobox.png 
b/icon-themes/breeze/cmd/lc_combobox.png
index 2c5de69..268dbf7 100644
Binary files a/icon-themes/breeze/cmd/lc_combobox.png and 
b/icon-themes/breeze/cmd/lc_combobox.png differ
diff --git a/icon-themes/breeze/cmd/lc_hideslide.png 
b/icon-themes/breeze/cmd/lc_hideslide.png
index 7637441..87f944b 100644
Binary files a/icon-themes/breeze/cmd/lc_hideslide.png and 
b/icon-themes/breeze/cmd/lc_hideslide.png differ
diff --git a/icon-themes/breeze/cmd/lc_insertcolumns.png 
b/icon-themes/breeze/cmd/lc_insertcolumns.png
index 1930643..afec305 100644
Binary files a/icon-themes/breeze/cmd/lc_insertcolumns.png and 
b/icon-themes/breeze/cmd/lc_insertcolumns.png differ
diff --git a/icon-themes/breeze/cmd/lc_insertcolumnsafter.png 
b/icon-themes/breeze/cmd/lc_insertcolumnsafter.png
new file mode 100644
index 000..7fbf6b3
Binary files /dev/null and b/icon-themes/breeze/cmd/lc_insertcolumnsafter.png 
differ
diff --git a/icon-themes/breeze/cmd/lc_insertcolumnsbefore.png 
b/icon-themes/breeze/cmd/lc_insertcolumnsbefore.png
new file mode 100644
index 000..afec305
Binary files /dev/null and b/icon-themes/breeze/cmd/lc_insertcolumnsbefore.png 
differ
diff --git a/icon-themes/breeze/cmd/lc_insertformcombo.png 
b/icon-themes/breeze/cmd/lc_insertformcombo.png
index 2c5de69..268dbf7 100644
Binary files a/icon-themes/breeze/cmd/lc_insertformcombo.png and 
b/icon-themes/breeze/cmd/lc_insertformcombo.png differ
diff --git a/icon-themes/breeze/cmd/lc_insertrowsafter.png 
b/icon-themes/breeze/cmd/lc_insertrowsafter.png
new file mode 100644
index 000..478420f
Binary files /dev/null and b/icon-themes/breeze/cmd/lc_insertrowsafter.png 
differ
diff --git a/icon-themes/breeze/cmd/lc_insertrowsbefore.png 
b/icon-themes/breeze/cmd/lc_insertrowsbefore.png
new file mode 100644
index 000..f2134a0
Binary files /dev/null and b/icon-themes/breeze/cmd/lc_insertrowsbefore.png 
differ
diff --git a/icon-themes/breeze/cmd/lc_newdoc.png 
b/icon-themes/breeze/cmd/lc_newdoc.png
index 307d529..4a2fa0c 100644
Binary files a/icon-themes/breeze/cmd/lc_newdoc.png and 
b/icon-themes/breeze/cmd/lc_newdoc.png differ
diff --git a/icon-themes/breeze/cmd/lc_presentationcurrentslide.png 
b/icon-themes/breeze/cmd/lc_presentationcurrentslide.png
index 9cae541..5706591 100644
Binary files a/icon-themes/breeze/cmd/lc_presentationcurrentslide.png and 
b/icon-themes/breeze/cmd/lc_presentationcurrentslide.png differ
diff --git a/icon-themes/breeze/cmd/lc_print.png 
b/icon-themes/breeze/cmd/lc_print.png
index 

[Libreoffice-bugs] [Bug 91432] Breeze theme - no printer symbol with large icons UI

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91432

Commit Notification libreoffice-comm...@lists.freedesktop.org changed:

   What|Removed |Added

 Whiteboard|| target:5.0.0.0.beta2

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 91432] Breeze theme - no printer symbol with large icons UI

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91432

--- Comment #12 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
andreas_ka committed a patch related to this issue.
It has been pushed to libreoffice-5-0:

http://cgit.freedesktop.org/libreoffice/core/commit/?id=13a630e20aeb62709c74d3f62ae8a1fee2506c31h=libreoffice-5-0

Breeze: fix tdf#91432 and add Calc InsertXBeforeAfter icons

It will be available in 5.0.0.0.beta2.

The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://wiki.documentfoundation.org/Testing_Daily_Builds
Affected users are encouraged to test the fix and report feedback.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 91432] Breeze theme - no printer symbol with large icons UI

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91432

Adolfo Jayme f...@libreoffice.org changed:

   What|Removed |Added

 Whiteboard| target:5.0.0.0.beta2   |target:5.1.0
   ||target:5.0.0.0.beta2

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 91853] [RTL] In color dropdown, color grid is misrendered assuming the scrollbar is always in the right

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91853

Adolfo Jayme f...@libreoffice.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Blocks||43808
Summary|color picker is incorrect   |[RTL] In color dropdown,
   |in RTL  |color grid is misrendered
   ||assuming the scrollbar is
   ||always in the right
 Ever confirmed|0   |1

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43808] Meta bug for Most Annoying RTL related issues

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43808

Adolfo Jayme f...@libreoffice.org changed:

   What|Removed |Added

 Depends on||91853

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 91853] [RTL] In color dropdown, color grid is misrendered assuming the scrollbar is always in the right

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91853

Adolfo Jayme f...@libreoffice.org changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=84
   ||574

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 91863] Frustrated with a couple of changes in 4.4.3.2

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91863

--- Comment #3 from Adolfo Jayme f...@libreoffice.org ---
(In reply to tommy27 from comment #2)
 the policy here is to have a single report for each issue.

Not only here… but in every single bug tracker out there ;-)

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 91697] String in English in macro security dialog

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91697

--- Comment #4 from sophie gautier.sop...@gmail.com ---
Hi Andras, could you backport the fix to 4.4? As it's a warning dialog, it's
better to have the string localized in that case. Thanks a lot in advance.
Sophie

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 91853] [RTL] In color dropdown, color grid is misrendered assuming the scrollbar is always in the right

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91853

Yousuf (Jay) Philips philip...@hotmail.com changed:

   What|Removed |Added

Version|4.4.3.2 rc  |4.4.2.2 release
 OS|Linux (All) |All

--- Comment #2 from Yousuf (Jay) Philips philip...@hotmail.com ---
Confirmed it on Windows 7 with 4.4.2 and master.

Version: 5.1.0.0.alpha1+
Build ID: 8ae25bbc092254f680e2976873f15bdbc26615ef
TinderBox: Win-x86@62-merge-TDF, Branch:MASTER, Time: 2015-06-03_22:14:51

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 91272] Writer wrong selection after table - insert rows

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91272

Adolfo Jayme f...@libreoffice.org changed:

   What|Removed |Added

 Resolution|FIXED   |WORKSFORME

--- Comment #4 from Adolfo Jayme f...@libreoffice.org ---
If there are no commits identified as fixing a bug, and the issue is no longer
reproducible, please close as WORKSFORME instead of FIXED.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


Re: review of OpenGL blacklist work

2015-06-06 Thread Thorsten Behrens
Markus Mohrhard wrote:
 Can you explain what you had in mind with the config layer idea.

Largely just avoiding duplicated code (no need to xml-parse, do
layering etc).

 I don't see the values as I doubt many admins will be able to change
 it and I had hoped that it would be enough to provide a config entry
 that points the local location of the blacklist.

Well, it's just the principle of least surprise - all standard config
deployment/overriding/lockdown mechanisms would then simply work. Also
- as always, there'll be at least *one* person wanting to do special
magic ... ;)

 So if a admin really wants to disable access to it he puts the
 blacklist in a place where the user can't touch it and lock the
 setting.
 
Fair enough. Doesn't make group policies / machine-specific settings
extra-easy, but I guess it'll work.

Cheers,

-- Thorsten


signature.asc
Description: Digital signature
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 91900] Libreoffice suddenly shows weird characters

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91900

Adolfo Jayme f...@libreoffice.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #1 from Adolfo Jayme f...@libreoffice.org ---
Thank you for reporting the bug. Unfortunately without clear steps to reproduce
it, we cannot track down the origin of the problem. Please provide a set of
step-by-step instructions on how to reproduce the problem.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 91083] Emulate non-splitting tables with .DOC is broken

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91083

--- Comment #1 from Justin L jl...@mail.com ---
A proposed fix was pushed to https://gerrit.libreoffice.org/#/c/16123.

It re-enables keep with next emulation, and produces similar layout between
ODT and DOC (except in certain instances where .doc follows MS Word layout
instead).

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-commits] core.git: icon-themes/sifr

2015-06-06 Thread Matthias Freund
 icon-themes/sifr/cmd/lc_currencyfield.png   |binary
 icon-themes/sifr/cmd/lc_euroconverter.png   |binary
 icon-themes/sifr/cmd/lc_line.png|binary
 icon-themes/sifr/cmd/lc_numberformatdecimal.png |binary
 icon-themes/sifr/cmd/lc_numberformatpercent.png |binary
 icon-themes/sifr/cmd/sc_currencyfield.png   |binary
 icon-themes/sifr/cmd/sc_euroconverter.png   |binary
 icon-themes/sifr/cmd/sc_line.png|binary
 icon-themes/sifr/cmd/sc_numberformatdecimal.png |binary
 icon-themes/sifr/cmd/sc_numberformatpercent.png |binary
 10 files changed

New commits:
commit bd79b99d42b225e5b771c47eae7e418471a7a58d
Author: Matthias Freund matti...@secure.mailbox.org
Date:   Sat Jun 6 12:34:56 2015 +0200

tdf#75256 - Improve Sifr

Adding numberformatdecimal, modified lc/sc_line.png - the old one looks 
like a minus, sifr version of the euro symbol and a nicer currencyfield icon.

Change-Id: I38f110e1d20f85bb57143884e0c5fd66a38f259f
Reviewed-on: https://gerrit.libreoffice.org/16120
Reviewed-by: Adolfo Jayme Barrientos fit...@ubuntu.com
Tested-by: Adolfo Jayme Barrientos fit...@ubuntu.com

diff --git a/icon-themes/sifr/cmd/lc_currencyfield.png 
b/icon-themes/sifr/cmd/lc_currencyfield.png
index 8e7e87e..213e8ff 100644
Binary files a/icon-themes/sifr/cmd/lc_currencyfield.png and 
b/icon-themes/sifr/cmd/lc_currencyfield.png differ
diff --git a/icon-themes/sifr/cmd/lc_euroconverter.png 
b/icon-themes/sifr/cmd/lc_euroconverter.png
new file mode 100644
index 000..b367195
Binary files /dev/null and b/icon-themes/sifr/cmd/lc_euroconverter.png differ
diff --git a/icon-themes/sifr/cmd/lc_line.png b/icon-themes/sifr/cmd/lc_line.png
index ba13692..bf38a6a 100644
Binary files a/icon-themes/sifr/cmd/lc_line.png and 
b/icon-themes/sifr/cmd/lc_line.png differ
diff --git a/icon-themes/sifr/cmd/lc_numberformatdecimal.png 
b/icon-themes/sifr/cmd/lc_numberformatdecimal.png
index 0c3e06e..0cde4d1 100644
Binary files a/icon-themes/sifr/cmd/lc_numberformatdecimal.png and 
b/icon-themes/sifr/cmd/lc_numberformatdecimal.png differ
diff --git a/icon-themes/sifr/cmd/lc_numberformatpercent.png 
b/icon-themes/sifr/cmd/lc_numberformatpercent.png
index e238dc0..f7f21eb 100644
Binary files a/icon-themes/sifr/cmd/lc_numberformatpercent.png and 
b/icon-themes/sifr/cmd/lc_numberformatpercent.png differ
diff --git a/icon-themes/sifr/cmd/sc_currencyfield.png 
b/icon-themes/sifr/cmd/sc_currencyfield.png
index 5639ba6..4d4ab05 100644
Binary files a/icon-themes/sifr/cmd/sc_currencyfield.png and 
b/icon-themes/sifr/cmd/sc_currencyfield.png differ
diff --git a/icon-themes/sifr/cmd/sc_euroconverter.png 
b/icon-themes/sifr/cmd/sc_euroconverter.png
new file mode 100644
index 000..3a993ae
Binary files /dev/null and b/icon-themes/sifr/cmd/sc_euroconverter.png differ
diff --git a/icon-themes/sifr/cmd/sc_line.png b/icon-themes/sifr/cmd/sc_line.png
index 1c60d33..51394e5 100644
Binary files a/icon-themes/sifr/cmd/sc_line.png and 
b/icon-themes/sifr/cmd/sc_line.png differ
diff --git a/icon-themes/sifr/cmd/sc_numberformatdecimal.png 
b/icon-themes/sifr/cmd/sc_numberformatdecimal.png
new file mode 100644
index 000..25841b7
Binary files /dev/null and b/icon-themes/sifr/cmd/sc_numberformatdecimal.png 
differ
diff --git a/icon-themes/sifr/cmd/sc_numberformatpercent.png 
b/icon-themes/sifr/cmd/sc_numberformatpercent.png
index c4b6a83..7fab4c3 100644
Binary files a/icon-themes/sifr/cmd/sc_numberformatpercent.png and 
b/icon-themes/sifr/cmd/sc_numberformatpercent.png differ
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-ux-advise] [Bug 90452] Breeze icons poorly visible in Start Center

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90452

V Stuart Foote vstuart.fo...@utsa.edu changed:

   What|Removed |Added

  Component|UI  |ux-advise
   Severity|normal  |enhancement

--- Comment #33 from V Stuart Foote vstuart.fo...@utsa.edu ---
There is pending branding/design work being done for 5.0 that will reskin the
StartCenter and Welcome/About panes. Until that is resolved there is no point
in this proceeding.

Comments 28 - 31 are somewhat onerous, and transcend the specific UI issue of
the poor Breeze icon contrast on background of StartCenter button panel, or of
the Sifr icon set fall-back to Breeze.

Regards a background color swap between the launch buttons panel and the
thumbnail view pane:

As implemented, thumbnail document views on the start pane are rendered, or
generic document type icons are shown, onto fixed 260 x 300 pixel panels that
currently show blue when the object is selected. That same blue is defined in a
gradient for selected button objects on the launch buttons. So it really is not
just two colors but also text contrast that needs to be judged. Rather the
whole default color scheme for the StartCenter and LO branding.

While we wait for resolution to the design work, not much can be done with the
Breeze icon set in 5.0, beyond possibly assigning a fixed color to just the
breeze icons used on the StartCenter, as in comments 16 - 19.  But then Pedro's
comment 20 is equally germane. And which the Apple Pages startcenter of
attachment 116326 suffers from.

Moving this back to UX advise, and enhancement since it seems to have drifted
away from the visibility issue.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 90452] Breeze icons poorly visible in Start Center

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90452

V Stuart Foote vstuart.fo...@utsa.edu changed:

   What|Removed |Added

  Component|UI  |ux-advise
   Severity|normal  |enhancement

--- Comment #33 from V Stuart Foote vstuart.fo...@utsa.edu ---
There is pending branding/design work being done for 5.0 that will reskin the
StartCenter and Welcome/About panes. Until that is resolved there is no point
in this proceeding.

Comments 28 - 31 are somewhat onerous, and transcend the specific UI issue of
the poor Breeze icon contrast on background of StartCenter button panel, or of
the Sifr icon set fall-back to Breeze.

Regards a background color swap between the launch buttons panel and the
thumbnail view pane:

As implemented, thumbnail document views on the start pane are rendered, or
generic document type icons are shown, onto fixed 260 x 300 pixel panels that
currently show blue when the object is selected. That same blue is defined in a
gradient for selected button objects on the launch buttons. So it really is not
just two colors but also text contrast that needs to be judged. Rather the
whole default color scheme for the StartCenter and LO branding.

While we wait for resolution to the design work, not much can be done with the
Breeze icon set in 5.0, beyond possibly assigning a fixed color to just the
breeze icons used on the StartCenter, as in comments 16 - 19.  But then Pedro's
comment 20 is equally germane. And which the Apple Pages startcenter of
attachment 116326 suffers from.

Moving this back to UX advise, and enhancement since it seems to have drifted
away from the visibility issue.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 91889] Include in LO free font Fira from Mozilla

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91889

--- Comment #1 from Adolfo Jayme f...@libreoffice.org ---
Why?

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 91899] New: cppunit JunitTest_sc_unoapi_3 fails

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91899

Bug ID: 91899
   Summary: cppunit JunitTest_sc_unoapi_3 fails
   Product: LibreOffice
   Version: 5.1.0.0.alpha0+ Master
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: serval2...@yahoo.fr

On pc Debian x86-64 with master sources updated today, build is ok but make
check fails with this:
E
Time: 140,031
There was 1 failure:
1) test(org.openoffice.test.UnoApiTest)
java.lang.AssertionError
at org.junit.Assert.fail(Assert.java:86)
at org.junit.Assert.assertTrue(Assert.java:41)
at org.junit.Assert.assertTrue(Assert.java:52)
at org.openoffice.test.UnoApiTest.test(UnoApiTest.java:37)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at
org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
at
org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at
org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
at
org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
at
org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
at
org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27)
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325)
at
org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78)
at
org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
at org.junit.runners.Suite.runChild(Suite.java:128)
at org.junit.runners.Suite.runChild(Suite.java:27)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
at org.junit.runner.JUnitCore.run(JUnitCore.java:137)
at org.junit.runner.JUnitCore.run(JUnitCore.java:115)
at org.junit.runner.JUnitCore.runMain(JUnitCore.java:77)
at org.junit.runner.JUnitCore.main(JUnitCore.java:36)

FAILURES!!!
Tests run: 1,  Failures: 1

to rerun just this failed test without all others, run:

make JunitTest_sc_unoapi_3

autogen.input:
--with-system-odbc
--enable-ext-barcode
--enable-ext-diagram
--enable-ext-hunart
--enable-ext-nlpsolver
--enable-ext-ct2n
--enable-ext-numbertext
--enable-postgresql-sdbc
--enable-ext-typo
--enable-ext-validator
--enable-ext-watch-window
--enable-ext-wiki-publisher
--enable-dbus
--enable-graphite
--enable-werror
--enable-debug
--enable-dbgutil
--enable-crashdump
--enable-dependency-tracking
--enable-online-update
--enable-extra-sample
--enable-extra-template
--enable-extra-gallery
--enable-python=internal
--without-system-mariadb
--enable-ext-mariadb-connector
--enable-bundle-mariadb
--enable-avahi
--enable-eot
--enable-odk
--with-lang=en-US it fr de es pt ru cs hu pl da sv el sk is nl lt
#--with-lang=ALL
--with-myspell-dicts
#--enable-evolution2
#--with-help

As I indicated in
http://nabble.documentfoundation.org/JunitTest-sc-unoapi-4-depends-on-localization-td4150046.html#a4150240,
it seems to fail because of  these lines:
 90 oObj.insertNewByName(name, CA, DPDscr);
 91 bResult = oSheet.getCellByPosition
 92 (CA.Column, CA.Row).getFormula().equals(Filter);

http://opengrok.libreoffice.org/xref/core/qadevOOo/tests/java/ifc/sheet/_XDataPilotTables.java#90

In my case oSheet.getCellByPosition(CA.Column, CA.Row).getFormula()  gives
Filtrer (= to filter in French)

So it seems we just would need a translation function to do this
 91 bResult = oSheet.getCellByPosition
 92 (CA.Column,
CA.Row).getFormula().equals(translateFunctionInLocaleUI(Filter));

-- 
You are receiving this mail because:
You are the assignee for the bug.
___

[Libreoffice-bugs] [Bug 91853] [RTL] In color dropdown, color grid is misrendered assuming the scrollbar is always in the right

2015-06-06 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91853

Yousuf (Jay) Philips philip...@hotmail.com changed:

   What|Removed |Added

 CC||philip...@hotmail.com

--- Comment #1 from Yousuf (Jay) Philips philip...@hotmail.com ---
Seems similar to the visual corruption that occurs when the sidebar is on the
left in arabic (bug 91148).

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


  1   2   3   >