[Libreoffice-bugs] [Bug 90858] Shape doesnt return to original position after Undoing anchor

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90858

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

   What|Removed |Added

Summary|Shape doesnt return to  |Shape doesnt return to
   |original position after |original position after
   |Undoing achor   |Undoing anchor

-- 
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 91709] Clone FORMATTING mouse pointer disappears

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91709

Pedro pedl...@gmail.com changed:

   What|Removed |Added

   Hardware|x86 (IA32)  |All

--- Comment #2 from Pedro pedl...@gmail.com ---
Confirmed with 5.0 x64 Beta1 under Windows 7 Pro x64 SP1, so this is not an x86
only problem. Changed Hardware to 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 91761] Crash when copying contents from one form to another form

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91761

christian_k...@gmx.net changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

-- 
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-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91779

--- Comment #2 from pkaplan...@gmail.com ---
Created attachment 116203
  -- https://bugs.documentfoundation.org/attachment.cgi?id=116203action=edit
powerpoint from screenshot

Libre Office was download 4.4.3, that I took from download.com cnet

-- 
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 83299] Format Sections is disabled when the cursor is inside a protected section

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83299

--- Comment #15 from Mohammed Sameer msam...@foolab.org ---
Created attachment 116204
  -- https://bugs.documentfoundation.org/attachment.cgi?id=116204action=edit
docx document

This is a docx document which causes libreoffice to show a disabled sections
entry.

-- 
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 91759] Spaces in links

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91759

--- Comment #4 from Matthias Braun matthias.br...@liwest.at ---
Created attachment 116206
  -- https://bugs.documentfoundation.org/attachment.cgi?id=116206action=edit
XLSX that links to a file with spaces

This file, when opened in Excel, causes a warning message and the link to be
removed.

-- 
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: 14 commits - sw/source

2015-05-31 Thread Matteo Casalin
 sw/source/filter/html/css1atr.cxx|   46 +
 sw/source/filter/html/htmlatr.cxx|  158 +--
 sw/source/filter/html/htmlcss1.cxx   |   47 -
 sw/source/filter/html/htmlctxt.cxx   |   24 ++--
 sw/source/filter/html/htmldrawreader.cxx |8 -
 sw/source/filter/html/htmldrawwriter.cxx |4 
 sw/source/filter/html/htmlfld.cxx|4 
 sw/source/filter/html/htmlfldw.cxx   |4 
 sw/source/filter/html/htmlflywriter.cxx  |   11 --
 sw/source/filter/html/htmlform.cxx   |   29 ++---
 sw/source/filter/html/htmlftn.cxx|   21 +---
 sw/source/filter/html/htmlgrin.cxx   |2 
 sw/source/filter/html/htmlnumreader.cxx  |2 
 sw/source/filter/html/htmlsect.cxx   |6 -
 sw/source/filter/html/htmltab.cxx|   24 ++--
 sw/source/filter/html/swhtml.cxx |   15 +-
 sw/source/filter/html/swhtml.hxx |4 
 17 files changed, 195 insertions(+), 214 deletions(-)

New commits:
commit 778d5508f5be8d9e31e1634110137f8afdf0065e
Author: Matteo Casalin matteo.casa...@yahoo.com
Date:   Sun May 31 23:32:19 2015 +0200

Use more proper integer types and range-based for loops

Change-Id: Ie91ab1fad1b2f16380071b8c8fbb928151f85d4b

diff --git a/sw/source/filter/html/htmlftn.cxx 
b/sw/source/filter/html/htmlftn.cxx
index e71d537..e0145c3 100644
--- a/sw/source/filter/html/htmlftn.cxx
+++ b/sw/source/filter/html/htmlftn.cxx
@@ -89,7 +89,7 @@ sal_Int32 lcl_html_getEndNoteInfo( SwEndNoteInfo rInfo,
 bool bEndNote )
 {
 sal_Int32 nStrPos = 0;
-for( sal_uInt16 nPart = 0; nPart  4; nPart++ )
+for( int nPart = 0; nPart  4; ++nPart )
 {
 OUString aPart;
 if( -1 != nStrPos )
@@ -134,7 +134,7 @@ void SwHTMLParser::FillFootNoteInfo( const OUString 
rContent )
 
 sal_Int32 nStrPos = lcl_html_getEndNoteInfo( aInfo, rContent, false );
 
-for( sal_uInt16 nPart = 4; nPart  8; nPart++ )
+for( int nPart = 4; nPart  8; ++nPart )
 {
 OUString aPart;
 if( -1 != nStrPos )
@@ -271,7 +271,7 @@ Writer OutHTML_SwFormatFootnote( Writer rWrt, const 
SfxPoolItem rHt )
 return rWrt;
 
 OUString sFootnoteName, sClass;
-sal_uInt16 nPos;
+size_t nPos;
 if( rFormatFootnote.IsEndNote() )
 {
 nPos = rHTMLWrt.pFootEndNotes ? rHTMLWrt.pFootEndNotes-size() : 0;
@@ -330,9 +330,8 @@ void SwHTMLWriter::OutFootEndNotes()
 #endif
 nFootNote = 0, nEndNote = 0;
 
-for( sal_uInt16 i=0; ipFootEndNotes-size(); i++ )
+for( auto *pTextFootnote : *pFootEndNotes )
 {
-SwTextFootnote *pTextFootnote = (*pFootEndNotes)[i];
 pFormatFootnote = pTextFootnote-GetFootnote();
 
 OUString sFootnoteName, sClass;
@@ -478,11 +477,11 @@ void SwHTMLWriter::OutFootEndNoteSym( const 
SwFormatFootnote rFormatFootnote,
 HTMLOutFuncs::Out_AsciiTag( Strm(), OOO_STRING_SVTOOLS_HTML_anchor, false 
);
 }
 
-static sal_uInt16 lcl_html_fillEndNoteInfo( const SwEndNoteInfo rInfo,
+static int lcl_html_fillEndNoteInfo( const SwEndNoteInfo rInfo,
  OUString *pParts,
  bool bEndNote  )
 {
-sal_uInt16 nParts = 0;
+int nParts = 0;
 sal_Int16 eFormat = rInfo.aFormat.GetNumberingType();
 if( (bEndNote ? SVX_NUM_ROMAN_LOWER : SVX_NUM_ARABIC) != eFormat )
 {
@@ -513,12 +512,12 @@ static sal_uInt16 lcl_html_fillEndNoteInfo( const 
SwEndNoteInfo rInfo,
 }
 
 static void lcl_html_outFootEndNoteInfo( Writer rWrt, OUString *pParts,
-  sal_uInt16 nParts, const sal_Char *pName )
+  int nParts, const sal_Char *pName )
 {
 SwHTMLWriter rHTMLWrt = static_castSwHTMLWriter(rWrt);
 
 OUString aContent;
-for( sal_uInt16 i=0; inParts; i++ )
+for( int i=0; inParts; ++i )
 {
 OUString aTmp( pParts[i] );
 aTmp = aTmp.replaceAll( \\,  );
@@ -552,7 +551,7 @@ void SwHTMLWriter::OutFootEndNoteInfo()
 {
 const SwFootnoteInfo rInfo = pDoc-GetFootnoteInfo();
 OUString aParts[8];
-sal_uInt16 nParts = lcl_html_fillEndNoteInfo( rInfo, aParts, false );
+int nParts = lcl_html_fillEndNoteInfo( rInfo, aParts, false );
 if( rInfo.eNum != FTNNUM_DOC )
 {
 aParts[4] = rInfo.eNum == FTNNUM_CHAPTER ? OUString( C ) : 
OUString( P );
@@ -581,7 +580,7 @@ void SwHTMLWriter::OutFootEndNoteInfo()
 {
 const SwEndNoteInfo rInfo = pDoc-GetEndNoteInfo();
 OUString aParts[4];
-sal_uInt16 nParts = lcl_html_fillEndNoteInfo( rInfo, aParts, true );
+const int nParts = lcl_html_fillEndNoteInfo( rInfo, aParts, true );
 if( nParts  0 )
 lcl_html_outFootEndNoteInfo( *this, aParts, nParts,
  
OOO_STRING_SVTOOLS_HTML_META_sdendnote );
commit c8eb473ff1895ad01fe01e82b0a422f6cf5c351e
Author: Matteo Casalin matteo.casa...@yahoo.com
Date:  

[Libreoffice-bugs] [Bug 71481] Format Paintbrush no function on default font

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=71481

--- Comment #8 from Zeki Bildirici kobz...@gmail.com ---
Hi,

I can confirm this annoying bug on 4.4.3.2

Best regards,
Zeki

-- 
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 91736] Viewer fails to open ods spreadsheet, long containing formulas

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91736

raal r...@post.cz changed:

   What|Removed |Added

 CC||r...@post.cz

--- Comment #1 from raal r...@post.cz ---
Please attach test file, see link Add an attachment above. Thank 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-ux-advise] [Bug 90934] Change 'Heading' and 'Heading 1' styles in Calc

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90934

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

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |INVALID

--- Comment #3 from Yousuf (Jay) Philips philip...@hotmail.com ---
Closing this in favour of bug 90937.

-- 
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 90934] Change 'Heading' and 'Heading 1' styles in Calc

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90934

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

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |INVALID

--- Comment #3 from Yousuf (Jay) Philips philip...@hotmail.com ---
Closing this in favour of bug 90937.

-- 
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 91724] [NVDA] documentation is not completely accessible for blind people.

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91724

--- Comment #4 from sophie gautier.sop...@gmail.com ---
Hi Zahra, there is an option to activate under Tools  Options  LibreOffice 
Accessibility, in the Other Options area, the first option Use text selection
cursor in read-only text documents. This option should allow you to read the
via arrow keys. Let us know if it works for you. 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-commits] core.git: Branch 'feature/unitver' - vcl/source

2015-05-31 Thread Andrzej Hunt
Rebased ref, commits from common ancestor:
commit 1a4423f9986938e17d1f9589abb1fef4a8a1621a
Author: Andrzej Hunt andr...@ahunt.org
Date:   Sun May 31 16:14:10 2015 +0100

Allow unsetting underline attribute

Change-Id: Ib11f6e76a52c0b8c943d46b9f14b3b00642879d1

diff --git a/vcl/source/window/window2.cxx b/vcl/source/window/window2.cxx
index c38a2b2..f187280 100644
--- a/vcl/source/window/window2.cxx
+++ b/vcl/source/window/window2.cxx
@@ -1558,10 +1558,10 @@ bool Window::set_font_attribute(const OString rKey, 
const OString rValue)
 aFont.SetItalic(ITALIC_NORMAL);
 SetControlFont(aFont);
 }
-else if (rKey == underline  toBool(rValue))
+else if (rKey == underline)
 {
 vcl::Font aFont(GetControlFont());
-aFont.SetUnderline(UNDERLINE_SINGLE);
+aFont.SetUnderline(toBool(rValue) ? UNDERLINE_SINGLE : UNDERLINE_NONE);
 SetControlFont(aFont);
 }
 else if (rKey == size)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Bug 75025] LibreOffice 4.3 most annoying bugs

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75025
Bug 75025 depends on bug 67712, which changed state.

Bug 67712 Summary: form controls and draw objects anchored to cell but changes 
position after reopening
https://bugs.documentfoundation.org/show_bug.cgi?id=67712

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED

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


[Libreoffice-bugs] [Bug 91734] Bookmarks not sorted alphabetically

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91734

raal r...@post.cz changed:

   What|Removed |Added

 CC||r...@post.cz

--- Comment #1 from raal r...@post.cz ---
Hello,
is it duplicate of bug 90415 ?

-- 
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 75025] LibreOffice 4.3 most annoying bugs

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75025
Bug 75025 depends on bug 67712, which changed state.

Bug 67712 Summary: form controls and draw objects anchored to cell but changes 
position after reopening
https://bugs.documentfoundation.org/show_bug.cgi?id=67712

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED

-- 
You are receiving this mail because:
You are on the CC list for the bug.
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 67712] form controls and draw objects anchored to cell but changes position after reopening

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=67712

Andras Timar tima...@gmail.com changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED
   Assignee|markus.mohrhard@googlemail. |libreoffice-b...@lists.free
   |com |desktop.org

--- Comment #58 from Andras Timar tima...@gmail.com ---
Henry Castro fixed it.

-- 
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 'feature/unitver' - vcl/source

2015-05-31 Thread Andrzej Hunt
 vcl/source/window/builder.cxx |   19 ++-
 1 file changed, 18 insertions(+), 1 deletion(-)

New commits:
commit de6b5a3ed8415cf419d708a2f90445d97e189e1a
Author: Andrzej Hunt andr...@ahunt.org
Date:   Sun May 31 20:59:41 2015 +0100

Support placeholder_text for GtkEntry/Edit in VclBuilder

Support for ComboBox and related classes will need to be added
separately, although they seem to reuse GtkEntry internally
in the .ui file.

Change-Id: Ibfda803663a22d5c6318fe9315b66b8af6189872

diff --git a/vcl/source/window/builder.cxx b/vcl/source/window/builder.cxx
index 64d08c4..b8af547 100644
--- a/vcl/source/window/builder.cxx
+++ b/vcl/source/window/builder.cxx
@@ -878,6 +878,18 @@ namespace
 return sTooltipText;
 }
 
+OString extractPlaceholderText(VclBuilder::stringmap rMap)
+{
+OString sPlaceholderText;
+VclBuilder::stringmap::iterator aFind = 
rMap.find(OString(placeholder_text));
+if (aFind != rMap.end())
+{
+sPlaceholderText = aFind-second;
+rMap.erase(aFind);
+}
+return sPlaceholderText;
+}
+
 void setupFromActionName(Button *pButton, VclBuilder::stringmap rMap, 
const uno::Referenceframe::XFrame rFrame)
 {
 if (!rFrame.is())
@@ -1607,7 +1619,12 @@ VclPtrvcl::Window VclBuilder::makeObject(vcl::Window 
*pParent, const OString 
 }
 else if (name == GtkEntry)
 {
-xWindow = VclPtrEdit::Create(pParent, 
WB_LEFT|WB_VCENTER|WB_BORDER|WB_3DLOOK);
+VclPtrInstanceEdit xEdit(pParent, 
WB_LEFT|WB_VCENTER|WB_BORDER|WB_3DLOOK);
+
+OUString 
sPlaceHolderText(OStringToOUString(extractPlaceholderText(rMap), 
RTL_TEXTENCODING_UTF8));
+xEdit-SetPlaceholderText(sPlaceHolderText);
+
+xWindow = xEdit;
 ensureDefaultWidthChars(rMap);
 }
 else if (name == GtkNotebook)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

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

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

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||serval2...@yahoo.fr
 Ever confirmed|0   |1

--- Comment #1 from Julien Nabet serval2...@yahoo.fr ---
Which LO version did you download 4.3.7 or 4.4.3?

Also, would it be possible you attach the powerpoint file by using this link
https://bugs.documentfoundation.org/attachment.cgi?bugid=91779action=enter?

-- 
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 91761] Crash when copying contents from one form to another form

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91761

--- Comment #3 from christian_k...@gmx.net ---
Created attachment 116202
  -- https://bugs.documentfoundation.org/attachment.cgi?id=116202action=edit
example

Hello,

I have uploaded the example database of bug 91357. I hope, it can be reproduced
with it. My original database, which causes the crash, has about 100 tables and
is too large for uploading and contains all my work ;)

-- 
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 91775] Case when not working in ver 4.4 of libre base

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91775

--- Comment #1 from MM plokk...@fastmail.fm ---
Can you attach a test file and/or steps to reproduce, so ppl can test your
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 90077] Crash after enabling media playback toolbar

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90077

Jorendc jore...@libreoffice.org changed:

   What|Removed |Added

   Severity|normal  |major

-- 
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 90077] Crash after enabling media playback toolbar

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90077

Jorendc jore...@libreoffice.org changed:

   What|Removed |Added

 CC||jore...@libreoffice.org

--- Comment #4 from Jorendc jore...@libreoffice.org ---
Still reproducible, Windows 7 x64 and LibreOffice Version: 5.1.0.0.alpha1+
Build ID: 6a626955eb8b803fa58a58baafaa2a06ab4761f2
TinderBox: Win-x86@39, Branch:master, Time: 2015-05-30_07:46:48
Locale: nl-BE (nl_BE)

-- 
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 91782] Export draw-document to eps result in crash

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91782

raal r...@post.cz changed:

   What|Removed |Added

   Priority|medium  |high
 Status|UNCONFIRMED |NEW
   Keywords||regression
 CC||r...@post.cz
 Ever confirmed|0   |1
 Whiteboard||bibisectRequest
   Severity|major   |critical
 OS|Windows (All)   |All

--- Comment #1 from raal r...@post.cz ---
I can confirm with Version: 5.1.0.0.alpha1+
Build ID: ef2e135cfb8f107a154aaab9b54f2dfca0edf6a0
TinderBox: Linux-rpm_deb-x86_64@46-TDF, Branch:master, Time:
2015-05-28_23:58:34

-- 
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 'feature/unitver' - 3 commits - external/udunits2 sc/source vcl/source

2015-05-31 Thread Andrzej Hunt
 external/udunits2/ExternalProject_udunits2.mk |1 +
 sc/source/core/units/unitsimpl.cxx|2 +-
 vcl/source/window/window2.cxx |4 ++--
 3 files changed, 4 insertions(+), 3 deletions(-)

New commits:
commit 2df2037b6d4c24a9b6501225b5cc3c3cd768c0a7
Author: Andrzej Hunt andr...@ahunt.org
Date:   Sun May 31 16:14:10 2015 +0100

Allow unsetting underline attribute

Change-Id: Ib11f6e76a52c0b8c943d46b9f14b3b00642879d1

diff --git a/vcl/source/window/window2.cxx b/vcl/source/window/window2.cxx
index c38a2b2..f187280 100644
--- a/vcl/source/window/window2.cxx
+++ b/vcl/source/window/window2.cxx
@@ -1558,10 +1558,10 @@ bool Window::set_font_attribute(const OString rKey, 
const OString rValue)
 aFont.SetItalic(ITALIC_NORMAL);
 SetControlFont(aFont);
 }
-else if (rKey == underline  toBool(rValue))
+else if (rKey == underline)
 {
 vcl::Font aFont(GetControlFont());
-aFont.SetUnderline(UNDERLINE_SINGLE);
+aFont.SetUnderline(toBool(rValue) ? UNDERLINE_SINGLE : UNDERLINE_NONE);
 SetControlFont(aFont);
 }
 else if (rKey == size)
commit 4973d16c2871b66531bf697e37c1a724799ec8f7
Author: Andrzej Hunt andr...@ahunt.org
Date:   Sun May 31 16:13:35 2015 +0100

Unset MAKEFLAGS for udunits2 to prevent WaE.

Change-Id: I781aa3557b2f68b8e65319056619aa81be02b518

diff --git a/external/udunits2/ExternalProject_udunits2.mk 
b/external/udunits2/ExternalProject_udunits2.mk
index 070dc67..a9ccd67 100644
--- a/external/udunits2/ExternalProject_udunits2.mk
+++ b/external/udunits2/ExternalProject_udunits2.mk
@@ -25,6 +25,7 @@ $(call gb_ExternalProject_get_state_target,udunits2,build) : 
$(call gb_ExternalP
 
 $(call gb_ExternalProject_get_state_target,udunits2,configure) :
$(call gb_ExternalProject_run,configure,\
+   unset MAKEFLAGS  \
autoreconf -i  \
MAKE=$(MAKE) ./configure \
$(if $(ENABLE_DEBUG),--enable-debug) \
commit daea7451d850d0ad48ac76f03c890cff46a04c00
Author: Andrzej Hunt andr...@ahunt.org
Date:   Thu May 28 14:15:49 2015 +0100

Use GetParamCount instead of GetByte.

Change-Id: I8f49d198c2e49246a28839a77c37563e9a8b19a5

diff --git a/sc/source/core/units/unitsimpl.cxx 
b/sc/source/core/units/unitsimpl.cxx
index 0f79edb..fc4e899 100644
--- a/sc/source/core/units/unitsimpl.cxx
+++ b/sc/source/core/units/unitsimpl.cxx
@@ -172,7 +172,7 @@ UnitsResult UnitsImpl::getOutputUnitsForOpCode(stack 
RAUSItem  rStack, const
 }
 } else if (nOpCode = SC_OPCODE_START_2_PAR 
nOpCode  SC_OPCODE_STOP_2_PAR) {
-sal_uInt8 nParams = pToken-GetByte();
+sal_uInt8 nParams = pToken-GetParamCount();
 
 assert(nParams = rStack.size());
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 91776] New: Start Center fails to honour shortcur R for Draw

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91776

Bug ID: 91776
   Summary: Start Center fails to honour shortcur R for Draw
   Product: LibreOffice
   Version: 4.4.0.0.alpha2
  Hardware: x86-64 (AMD64)
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: lo_b...@iseries-guru.com

STR

(1) In Start Center under the heading Create, observe Draw Drawing
with the second R underlined.

(2) Type R.  

Expected : The program opens Draw Window Untitled 1 and gives it
focus.

Obaserved : No action.


On Linux, I see this in dbgutil version 2015-05-31 ...
Version: 5.1.0.0.alpha1+
Build ID: 661791da72ec2bba3552279e239f13df1c4f
Locale: en-CA (en_CA.UTF-8)
and ...
Version: 4.4.0.0.alpha2+
Build ID: ef2ed50231fd946c1f374ffbce28ebb98eda56c5
TinderBox: Linux-rpm_deb-x86_64@46-TDF, Branch:master, Time:
2014-11-15_01:48:42
but not in ...
Version: 4.3.2.2
Build ID: edfb5295ba211bd31ad47d0bad0118690f76407d

On Windows Vista 32-bit, I do see the problem in ...
Version: 5.1.0.0.alpha1+
Build ID: 1a8e9dae32997bf199dbd192058fcd8f187ddc49
TinderBox: Win-x86@39, Branch:master, Time: 2015-05-31_03:55:23
Locale: en-CA (en_CA)

-- 
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 91761] Crash when copying contents from one form to another form

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91761

raal r...@post.cz changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||r...@post.cz
 Ever confirmed|0   |1

--- Comment #1 from raal r...@post.cz ---
Hello Christian,

Thank you for reporting the bug. Please attach a sample document, as this makes
it easier for us to verify the bug. 
I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' once the requested document is provided.
(Please note that the attachment will be public, remove any sensitive
information before attaching it. 
See
https://wiki.documentfoundation.org/QA/FAQ#How_can_I_eliminate_confidential_data_from_a_sample_document.3F
for help on how to do so.)

-- 
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 90077] Crash after enabling media playback toolbar

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90077

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

   What|Removed |Added

   Priority|medium  |highest
   Severity|major   |critical

-- 
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 89548] SIDEBAR: Vertical alignment buttons no longer appear

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89548

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

   What|Removed |Added

   Priority|medium  |highest

-- 
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 90057] Crash after inserting a video or audio

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90057

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

   What|Removed |Added

   Priority|medium  |highest
   Severity|normal  |critical

-- 
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 89548] SIDEBAR: Vertical alignment buttons no longer appear

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89548

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

   What|Removed |Added

   Priority|medium  |highest

-- 
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 90790] ICONS: Parent icon theme links.txt duplicate records not used in child themes

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90790

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

   What|Removed |Added

   Priority|medium  |highest
   Severity|normal  |major

-- 
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 90376] Dragging toolbar doesnt clean up after itself

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90376

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

   What|Removed |Added

   Priority|medium  |highest

-- 
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 91772] CRASH: DRAW: when export named no file extension.

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91772

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

   What|Removed |Added

 CC||serval2...@yahoo.fr

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

Here's the main part of bt:
Program received signal SIGSEGV, Segmentation fault.
0x2aaae3656cf6 in PSWriter::WritePS (this=0x7fff19f0, rGraphic=...,
rTargetStream=..., pFilterConfigItem=0x7fff1cd0)
at
/home/julien/compile-libreoffice/libreoffice/filter/source/graphicfilter/eps/eps.cxx:428
428pVDev-SetMapMode( pMTF-GetPrefMapMode() );
(gdb) bt
#0  0x2aaae3656cf6 in PSWriter::WritePS(Graphic const, SvStream,
FilterConfigItem*) (this=0x7fff19f0, rGraphic=..., rTargetStream=...,
pFilterConfigItem=0x7fff1cd0) at
/home/julien/compile-libreoffice/libreoffice/filter/source/graphicfilter/eps/eps.cxx:428
#1  0x2aaae3661181 in GraphicExport(SvStream, Graphic, FilterConfigItem*)
(rStream=..., rGraphic=..., pFilterConfigItem=0x7fff1cd0)
at
/home/julien/compile-libreoffice/libreoffice/filter/source/graphicfilter/eps/eps.cxx:2861
#2  0x2aaab1f5a186 in GraphicFilter::ExportGraphic(Graphic const,
rtl::OUString const, SvStream, unsigned short,
com::sun::star::uno::Sequencecom::sun::star::beans::PropertyValue const*)
(this=0x2aaab2912c40 rtl::Static(anonymous namespace)::StandardGraphicFilter,
(anonymous namespace)::theGraphicFilter::get()::instance, rGraphic=...,
rPath=, rOStm=..., nFormat=2, pFilterData=0x7fff2228) at
/home/julien/compile-libreoffice/libreoffice/vcl/source/filter/graphicfilter.cxx:2148
#3  0x2aaad0d5b0d5 in (anonymous
namespace)::GraphicExporter::filter(com::sun::star::uno::Sequencecom::sun::star::beans::PropertyValue
const) (this=
0x70b82b0, aDescriptor=uno::Sequence of length 3 = {...}) at
/home/julien/compile-libreoffice/libreoffice/svx/source/unodraw/UnoGraphicExporter.cxx:1052
#4  0x2fccd948 in ExportDialog::GetGraphicStream() (this=0x7025ce0) at
/home/julien/compile-libreoffice/libreoffice/svtools/source/filter/exportdialog.cxx:477
#5  0x2fcd1a8b in ExportDialog::updateControls() (this=0x7025ce0) at
/home/julien/compile-libreoffice/libreoffice/svtools/source/filter/exportdialog.cxx:888
#6  0x2fccfd4f in ExportDialog::ExportDialog(FltCallDialogParameter,
com::sun::star::uno::Referencecom::sun::star::uno::XComponentContext const,
com::sun::star::uno::Referencecom::sun::star::lang::XComponent const, bool,
bool) (this=0x7025ce0, rPara=..., rxContext=
uno::Reference to (cppu::ComponentContext *) 0x77cd00,
rxSourceDocument=uno::Reference to (SdXImpressDocument *) 0x2bdedc0,
bExportSelection=false, bIsPixelFormat=false)
at
/home/julien/compile-libreoffice/libreoffice/svtools/source/filter/exportdialog.cxx:698
#7  0x2fcc87ef in VclPtrExportDialog::CreateFltCallDialogParameter,
com::sun::star::uno::Referencecom::sun::star::uno::XComponentContext const,
com::sun::star::uno::Referencecom::sun::star::lang::XComponent, bool,
bool(FltCallDialogParameter,
com::sun::star::uno::Referencecom::sun::star::uno::XComponentContext const,
com::sun::star::uno::Referencecom::sun::star::lang::XComponent, bool,
bool) () at
/home/julien/compile-libreoffice/libreoffice/include/vcl/vclptr.hxx:139
#8  0x2fcc729e in (anonymous
namespace)::SvFilterOptionsDialog::execute() (this=0x708d900)
at
/home/julien/compile-libreoffice/libreoffice/svtools/source/filter/SvFilterOptionsDialog.cxx:258

-- 
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 91759] Spaces in links

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91759

--- Comment #3 from raal r...@post.cz ---
(In reply to Matthias Braun from comment #2)

 
 I realized that the link is only removed by Excel after Calc converted the
 absolute path to a relative one.
 This happens when I open an XLSX that contains a link with Calc, make a
 change such as editing some cell, and then save it.

Could you attach test xlxs 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 67712] form controls and draw objects anchored to cell but changes position after reopening

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=67712

--- Comment #59 from vlb v...@xs4all.nl ---
(In reply to Andras Timar from comment #58)
 Henry Castro fixed it.

Is It alzo fixed in LO4.4.4.0?

-- 
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 91615] Scanner Select dialog not shown on windows x64

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91615

Masui Masanori masanori840...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from Masui Masanori masanori840...@gmail.com ---
I couldn't reproduce on my Windows8.1(x64). But it was occurred on my Mac
mini(OSX 10.10.3).

I tested Writer, Impress, Draw and my test environments were as follows.

env:
OS : Mac OSX 10.10.3
LibO ver: 5.0.0.0.beta1
Build ID: 0a16c3dda4150008d9be6f24cbd15ac198d116d3

-- 
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 61914] [META] Start Center -- implementation UI and UX

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61914

Terrence Enger lo_b...@iseries-guru.com changed:

   What|Removed |Added

 Depends on||91776

-- 
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/galaxy icon-themes/tango officecfg/registry sc/inc sc/qa sc/sdi sc/source sc/uiconfig

2015-05-31 Thread Philippe Jung
 icon-themes/galaxy/links.txt  |4 +
 icon-themes/tango/links.txt   |4 +
 officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu |   24 
+--
 sc/inc/global.hxx |6 +
 sc/inc/sc.hrc |4 -
 sc/inc/sccommands.h   |4 -
 sc/qa/unit/ucalc.cxx  |6 -
 sc/qa/unit/ucalc_formula.cxx  |   16 ++--
 sc/qa/unit/ucalc_sharedformula.cxx|2 
 sc/sdi/cellsh.sdi |4 -
 sc/sdi/scalc.sdi  |4 -
 sc/source/ui/docshell/docfunc.cxx |   34 
+-
 sc/source/ui/docshell/docsh3.cxx  |4 -
 sc/source/ui/miscdlgs/inscldlg.cxx|4 -
 sc/source/ui/src/hdrcont.src  |8 +-
 sc/source/ui/undo/undoblk.cxx |   12 +--
 sc/source/ui/unoobj/cellsuno.cxx  |   10 +-
 sc/source/ui/unoobj/docuno.cxx|4 -
 sc/source/ui/view/cellsh.cxx  |4 -
 sc/source/ui/view/cellsh1.cxx |   20 ++---
 sc/source/ui/view/tabview3.cxx|4 -
 sc/source/ui/view/viewfunc.cxx|4 -
 sc/uiconfig/scalc/menubar/menubar.xml |   12 ++-
 sc/uiconfig/scalc/toolbar/insertcellsbar.xml  |6 -
 sc/uiconfig/scalc/toolbar/standardbar.xml |4 -
 25 files changed, 121 insertions(+), 87 deletions(-)

New commits:
commit f97beeef352fdd9fd4f157a7a4c4f6af8341cbe6
Author: Philippe Jung phil.j...@free.fr
Date:   Wed May 20 16:54:27 2015 +0200

Calc: Insert row/col before/after [1/2]

This part renames all INSROW / INSCOL to
INSROWS_BEFORE / INSCOLS_BEFORE which is
the current (default) behaviour.

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

diff --git a/icon-themes/galaxy/links.txt b/icon-themes/galaxy/links.txt
index 0a257a3..dcdf49c 100644
--- a/icon-themes/galaxy/links.txt
+++ b/icon-themes/galaxy/links.txt
@@ -19,6 +19,10 @@ cmd/sc_objectforwardone.png cmd/sc_forward.png
 cmd/lc_objectbackone.png cmd/lc_backward.png
 cmd/sc_objectbackone.png cmd/sc_backward.png
 
+cmd/lc_insertrowsbefore.png cmd/lc_insertrows.png
+cmd/sc_insertrowsbefore.png cmd/sc_insertrows.png
+cmd/lc_insertcolumnsbefore.png cmd/lc_insertcolumns.png
+cmd/sc_insertcolumnsbefore.png cmd/sc_insertcolumns.png
 cmd/lc_insertrowsafter.png cmd/lc_insertrows.png
 cmd/sc_insertrowsafter.png cmd/sc_insertrows.png
 cmd/lc_insertcolumnsafter.png cmd/lc_insertcolumns.png
diff --git a/icon-themes/tango/links.txt b/icon-themes/tango/links.txt
index 628df29..aa1b9c0 100644
--- a/icon-themes/tango/links.txt
+++ b/icon-themes/tango/links.txt
@@ -397,6 +397,10 @@ sc/res/sf02.png sw/imglst/sf04.png
 svx/res/symphony/spacing3.png cmd/sc_spacepara2.png
 cmd/sc_graphicdialog.png cmd/sc_insertgraphic.png
 
+cmd/lc_insertrowsbefore.png cmd/lc_insertrows.png
+cmd/sc_insertrowsbefore.png cmd/sc_insertrows.png
+cmd/lc_insertcolumnsbefore.png cmd/lc_insertcolumns.png
+cmd/sc_insertcolumnsbefore.png cmd/sc_insertcolumns.png
 cmd/lc_insertrowsafter.png cmd/lc_insertrows.png
 cmd/sc_insertrowsafter.png cmd/sc_insertrows.png
 cmd/lc_insertcolumnsafter.png cmd/lc_insertcolumns.png
diff --git a/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu
index c380155..f3db21f 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu
@@ -1059,23 +1059,39 @@
   value xml:lang=en-US~Cells.../value
 /prop
   /node
-  node oor:name=.uno:InsertRows oor:op=replace
+  node oor:name=.uno:InsertRowsMenu oor:op=replace
+prop oor:name=Label oor:type=xs:string
+  value xml:lang=en-US~Rows/value
+/prop
+prop oor:name=Properties oor:type=xs:int
+  value1/value
+/prop
+  /node
+  node oor:name=.uno:InsertColumnsMenu oor:op=replace
+prop oor:name=Label oor:type=xs:string
+  value xml:lang=en-USCo~lumns/value
+/prop
+prop oor:name=Properties oor:type=xs:int
+  value1/value
+/prop
+  /node
+  node oor:name=.uno:InsertRowsBefore oor:op=replace
 

[Libreoffice-commits] core.git: officecfg/registry sc/inc sc/sdi sc/source sc/uiconfig

2015-05-31 Thread Philippe Jung
 officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu |   22 
 sc/inc/sc.hrc |4 
 sc/inc/sccommands.h   |2 
 sc/sdi/cellsh.sdi |2 
 sc/sdi/scalc.sdi  |   50 
+
 sc/source/ui/docshell/docfunc.cxx |   51 
++
 sc/source/ui/src/hdrcont.src  |   12 ++
 sc/source/ui/undo/undoblk.cxx |8 +
 sc/source/ui/view/cellsh.cxx  |2 
 sc/source/ui/view/cellsh1.cxx |   10 +
 sc/source/ui/view/tabview3.cxx|2 
 sc/source/ui/view/viewfunc.cxx|4 
 sc/uiconfig/scalc/menubar/menubar.xml |2 
 sc/uiconfig/scalc/toolbar/insertcellsbar.xml  |2 
 sc/uiconfig/scalc/toolbar/standardbar.xml |2 
 15 files changed, 152 insertions(+), 23 deletions(-)

New commits:
commit 285b5ef45817fe20d3bf9613e0247d395b7c880d
Author: Philippe Jung phil.j...@free.fr
Date:   Wed May 20 17:27:08 2015 +0200

Calc: Insert row/col before/after [2/2]

This part adds features to add rows/cols
after the selection which is a new behaviour.

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

diff --git a/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu
index f3db21f..1d8490f 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu
@@ -1097,6 +1097,28 @@
   value1/value
 /prop
   /node
+  node oor:name=.uno:InsertRowsAfter oor:op=replace
+prop oor:name=Label oor:type=xs:string
+  value xml:lang=en-USInsert ~Rows Below/value
+/prop
+prop oor:name=ContextLabel oor:type=xs:string
+  value xml:lang=en-USRows ~Below/value
+/prop
+prop oor:name=Properties oor:type=xs:int
+  value1/value
+/prop
+  /node
+  node oor:name=.uno:InsertColumnsAfter oor:op=replace
+prop oor:name=Label oor:type=xs:string
+  value xml:lang=en-USInsert Co~lumns Right/value
+/prop
+prop oor:name=ContextLabel oor:type=xs:string
+  value xml:lang=en-USColumns ~Right/value
+/prop
+prop oor:name=Properties oor:type=xs:int
+  value1/value
+/prop
+  /node
   node oor:name=.uno:Insert oor:op=replace
 prop oor:name=Label oor:type=xs:string
   value xml:lang=en-USInsert ~Sheet.../value
diff --git a/sc/inc/sc.hrc b/sc/inc/sc.hrc
index 6def9ba..2cbd8d14 100644
--- a/sc/inc/sc.hrc
+++ b/sc/inc/sc.hrc
@@ -334,7 +334,9 @@
 #define FID_ADD_NAME(INSERT_MENU_START + 16)
 #define FID_INS_CELLSDOWN   (INSERT_MENU_START + 18)
 #define FID_INS_CELLSRIGHT  (INSERT_MENU_START + 19)
-#define INSERT_MENU_END (INSERT_MENU_START + 20)
+#define FID_INS_ROWS_AFTER  (INSERT_MENU_START + 20)
+#define FID_INS_COLUMNS_AFTER   (INSERT_MENU_START + 21)
+#define INSERT_MENU_END (INSERT_MENU_START + 22)
 
 #define FORMAT_MENU_START   (INSERT_MENU_END)
 #define FID_CELL_FORMAT (FORMAT_MENU_START)
diff --git a/sc/inc/sccommands.h b/sc/inc/sccommands.h
index ba8f94c..e931c19 100644
--- a/sc/inc/sccommands.h
+++ b/sc/inc/sccommands.h
@@ -44,8 +44,10 @@
 #define CMD_FID_INS_TABLE   .uno:Insert
 #define CMD_FID_INS_CELL.uno:InsertCell
 #define CMD_FID_INS_COLBRK  .uno:InsertColumnBreak
+#define CMD_FID_INS_COLUMNS_AFTER   .uno:InsertColumnsAfter
 #define CMD_FID_INS_COLUMNS_BEFORE  .uno:InsertColumnsBefore
 #define CMD_FID_INS_ROWBRK  .uno:InsertRowBreak
+#define CMD_FID_INS_ROWS_AFTER  .uno:InsertRowsAfter
 #define CMD_FID_INS_ROWS_BEFORE .uno:InsertRowsBefore
 #define CMD_FID_MERGE_ON.uno:MergeCells
 #define CMD_FID_MERGE_OFF   .uno:SplitCell
diff --git a/sc/sdi/cellsh.sdi b/sc/sdi/cellsh.sdi
index 3e6fc6e..d780e98 100644
--- a/sc/sdi/cellsh.sdi
+++ b/sc/sdi/cellsh.sdi
@@ -118,6 +118,8 @@ interface CellSelection
 SID_INSERT_CURRENT_TIME [ ExecMethod = ExecuteEdit; StateMethod = 
GetState; ]
 FID_INS_ROWS_BEFORE [ ExecMethod = ExecuteEdit; StateMethod = 
GetBlockState; ]
 FID_INS_COLUMNS_BEFORE  [ ExecMethod = ExecuteEdit; 

[Libreoffice-commits] core.git: Branch 'feature/unitver' - 2 commits - officecfg/registry sc/inc sc/Library_sc.mk sc/sdi sc/source sc/uiconfig sc/UIConfig_scalc.mk

2015-05-31 Thread Andrzej Hunt
 officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu |5 
 sc/Library_sc.mk  |1 
 sc/UIConfig_scalc.mk  |1 
 sc/inc/sc.hrc |1 
 sc/inc/sccommands.h   |1 
 sc/inc/units.hxx  |2 
 sc/sdi/cellsh.sdi |1 
 sc/sdi/drawsh.sdi |1 
 sc/sdi/drtxtob.sdi|1 
 sc/sdi/scalc.sdi  |   24 
 sc/source/core/units/unitsimpl.cxx|6 
 sc/source/core/units/unitsimpl.hxx|2 
 sc/source/ui/app/scdll.cxx|1 
 sc/source/ui/inc/reffact.hxx  |7 
 sc/source/ui/inc/unitsconversiondlg.hxx   |   97 ++
 sc/source/ui/miscdlgs/unitsconversiondlg.cxx  |  272 
+++
 sc/source/ui/view/cellsh1.cxx |   12 
 sc/source/ui/view/tabvwsh.cxx |1 
 sc/source/ui/view/tabvwshc.cxx|7 
 sc/uiconfig/scalc/menubar/menubar.xml |2 
 sc/uiconfig/scalc/ui/unitsconversiondialog.ui |  347 
++
 21 files changed, 792 insertions(+)

New commits:
commit ad52aa65a5cd9eeaea4cb001a02074fda5736215
Author: Andrzej Hunt andr...@ahunt.org
Date:   Sun May 31 20:37:14 2015 +0100

Implement units conversion dialog.

Change-Id: Iea99d0c86de970e185bfc03e548be47f5235be5f

diff --git a/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu
index 433c723..a57d7e2 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu
@@ -1413,6 +1413,11 @@
   value xml:lang=en-US~XML Source.../value
 /prop
   /node
+  node oor:name=.uno:ConvertUnits oor:op=replace
+prop oor:name=Label oor:type=xs:string
+  value xml:lang=en-USConvert ~Units/value
+/prop
+  /node
   node oor:name=.uno:DataSort oor:op=replace
 prop oor:name=Label oor:type=xs:string
   value xml:lang=en-US~Sort.../value
diff --git a/sc/Library_sc.mk b/sc/Library_sc.mk
index 04052c6..82a5237 100644
--- a/sc/Library_sc.mk
+++ b/sc/Library_sc.mk
@@ -488,6 +488,7 @@ $(eval $(call gb_Library_add_exception_objects,sc,\
 sc/source/ui/miscdlgs/solverutil \
 sc/source/ui/miscdlgs/solvrdlg \
 sc/source/ui/miscdlgs/tabopdlg \
+sc/source/ui/miscdlgs/unitsconversiondlg \
 sc/source/ui/miscdlgs/warnbox \
 sc/source/ui/namedlg/namedefdlg \
 sc/source/ui/namedlg/namedlg \
diff --git a/sc/UIConfig_scalc.mk b/sc/UIConfig_scalc.mk
index 5e4be53..77c821c 100644
--- a/sc/UIConfig_scalc.mk
+++ b/sc/UIConfig_scalc.mk
@@ -181,6 +181,7 @@ $(eval $(call gb_UIConfig_add_uifiles,modules/scalc,\
sc/uiconfig/scalc/ui/tpviewpage \
sc/uiconfig/scalc/ui/ttestdialog \
sc/uiconfig/scalc/ui/ungroupdialog \
+   sc/uiconfig/scalc/ui/unitsconversiondialog \
sc/uiconfig/scalc/ui/validationdialog \
sc/uiconfig/scalc/ui/validationcriteriapage \
sc/uiconfig/scalc/ui/validationhelptabpage \
diff --git a/sc/inc/sc.hrc b/sc/inc/sc.hrc
index 255dc71..bac863f 100644
--- a/sc/inc/sc.hrc
+++ b/sc/inc/sc.hrc
@@ -274,6 +274,7 @@
 #define SID_ZTEST_DIALOG(SC_MESSAGE_START + 80)
 #define SID_CHI_SQUARE_TEST_DIALOG  (SC_MESSAGE_START + 81)
 #define SID_SEARCH_RESULTS_DIALOG   (SC_MESSAGE_START + 82)
+#define SID_UNITSCONVERSION_DIALOG  (SC_MESSAGE_START + 83)
 
 // functions
 
diff --git a/sc/inc/sccommands.h b/sc/inc/sccommands.h
index 93a770e..9cc002e 100644
--- a/sc/inc/sccommands.h
+++ b/sc/inc/sccommands.h
@@ -24,6 +24,7 @@
 #define CMD_FID_COL_WIDTH   .uno:ColumnWidth
 #define CMD_SID_CREATE_SW_DRAWVIEW  .uno:CreateSWDrawView
 #define CMD_SID_OPENDLG_PIVOTTABLE  .uno:DataDataPilotRun
+#define CMD_SID_UNITSONVERSION_DIALOG   .uno:ConvertUnits
 #define CMD_SID_DATA_SELECT .uno:DataSelect
 #define CMD_SID_DEFINE_PRINTAREA.uno:DefinePrintArea
 #define CMD_FID_DELETE_CELL .uno:DeleteCell
diff --git a/sc/sdi/cellsh.sdi b/sc/sdi/cellsh.sdi
index 6da3c75..162447a 100644
--- a/sc/sdi/cellsh.sdi
+++ b/sc/sdi/cellsh.sdi
@@ -31,6 +31,7 @@ interface CellSelection
 SID_DEFINE_COLROWNAMERANGES [ ExecMethod = ExecuteEdit; StateMethod = 
GetState; ]
  

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

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

--- Comment #3 from Julien Nabet serval2...@yahoo.fr ---
Thank you for your feedback.

I downloaded the powerpoint the file but failed to reproduce your problem with
LO Debian package 4.4.3
I can view in edit mode, in slideshow.

What do you mean when you say move to display?
Could you be more specific for the step by step process to 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 91776] Start Center fails to honour shortcur R for Draw

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91776

Terrence Enger lo_b...@iseries-guru.com changed:

   What|Removed |Added

   Keywords||regression

--- Comment #1 from Terrence Enger lo_b...@iseries-guru.com ---
Setting keyword regression.

-- 
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] online.git: loleaflet/src

2015-05-31 Thread Jan Holesovsky
 loleaflet/src/layer/tile/TileLayer.js |   11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

New commits:
commit 4342c5c9fbe313f3f4a10f9f8c7dc9019e7bb30f
Author: Jan Holesovsky ke...@collabora.com
Date:   Sun May 31 14:02:29 2015 +0200

Don't switch parts when we are in the correct one already.

diff --git a/loleaflet/src/layer/tile/TileLayer.js 
b/loleaflet/src/layer/tile/TileLayer.js
index b12dbe2..2c7e447 100644
--- a/loleaflet/src/layer/tile/TileLayer.js
+++ b/loleaflet/src/layer/tile/TileLayer.js
@@ -261,10 +261,13 @@ L.TileLayer = L.GridLayer.extend({
}
}
else if (textMsg.startsWith('setpart:')) {
-   this._currentPart = parseInt(textMsg.match(/\d+/g)[0]);
-   this._update();
-   this._clearSelections();
-   this._map.fire('setpart', {currentPart: 
this._currentPart});
+   var part = parseInt(textMsg.match(/\d+/g)[0]);
+   if (part != this._currentPart) {
+   this._currentPart = part;
+   this._update();
+   this._clearSelections();
+   this._map.fire('setpart', {currentPart: 
this._currentPart});
+   }
}
else if (textMsg.startsWith('searchnotfound:')) {
this._map.fire('searchnotfound');
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-05-31 Thread Jan Holesovsky
 sd/source/ui/view/Outliner.cxx |   19 ---
 1 file changed, 19 deletions(-)

New commits:
commit 332e3d4bc9f52538af18eabb1654720ef8c67dba
Author: Jan Holesovsky ke...@collabora.com
Date:   Sun May 31 20:33:36 2015 +0200

lok: Don't attempt to select the exact text after a failed search.

This is a waste - it gets unselected in the end anyway, and causes problems
for LibreOfficeKit.

Change-Id: I9fea5853fc8fb177b31c77c097e96c51f93a0d7d

diff --git a/sd/source/ui/view/Outliner.cxx b/sd/source/ui/view/Outliner.cxx
index 3e50e51..e073118 100644
--- a/sd/source/ui/view/Outliner.cxx
+++ b/sd/source/ui/view/Outliner.cxx
@@ -903,25 +903,6 @@ void Outliner::RestoreStartPosition()
 SetViewMode (meStartViewMode);
 if (pDrawViewShell.get() != NULL)
 SetPage (meStartEditMode, mnStartPageIndex);
-
-if (mpStartEditedObject != NULL)
-{
-// Turn on the text toolbar as it is done in FuText so that
-// undo manager setting/restoring in
-// sd::View::{Beg,End}TextEdit() works on the same view shell.
-
pViewShell-GetViewShellBase().GetToolBarManager()-SetToolBarShell(
-ToolBarManager::TBG_FUNCTION,
-RID_DRAW_TEXT_TOOLBOX);
-
-mpView-SdrBeginTextEdit(mpStartEditedObject);
-::Outliner* pOutliner =
-  static_castDrawView*(mpView)-GetTextEditOutliner();
-if (pOutliner!=NULL  pOutliner-GetViewCount()0)
-{
-OutlinerView* pOutlinerView = pOutliner-GetView(0);
-pOutlinerView-SetSelection(maStartSelection);
-}
-}
 }
 else if (pViewShell-ISA(OutlineViewShell))
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 91759] Spaces in links

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91759

raal r...@post.cz changed:

   What|Removed |Added

 CC||r...@post.cz

--- Comment #1 from raal r...@post.cz ---
I can not confirm with Version: 5.1.0.0.alpha1+
Build ID: 1a8e9dae32997bf199dbd192058fcd8f187ddc49
TinderBox: Linux-rpm_deb-x86_64@46-TDF, Branch:master, Time:
2015-05-31_03:57:11
path: /tmp/BOOKMARK TEST.odt

Seems to be fixed, please test with newer 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 91574] SLIDESHOW: presenter console not shown and crash on exit

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91574

Thorsten Behrens t...@libreoffice.org changed:

   What|Removed |Added

 CC||t...@libreoffice.org

--- Comment #4 from Thorsten Behrens t...@libreoffice.org ---
Yeah, presenter console seems seriously busted on 5.0 - on linux,
libreoffice-5-0 build from yesterday, and just getting an empty frame for the
presenter view. No immediate crash though.

-- 
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 91782] Export draw-document to eps result in crash

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91782

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

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #2 from Julien Nabet serval2...@yahoo.fr ---
Created attachment 116200
  -- https://bugs.documentfoundation.org/attachment.cgi?id=116200action=edit
bt with debug symbols

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 91782] Export draw-document to eps result in crash

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91782

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

   What|Removed |Added

   Keywords||have-backtrace
 Blocks||91310

-- 
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 91310] [META] Fallout from VclPtr merge

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91310

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

   What|Removed |Added

 Depends on||91782

-- 
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


MAB/Priority and Severity

2015-05-31 Thread Joel Madero
Hi All!

So the time has finally arrived that we are moving forward with _locking
out priority/severity_. This means that *MAB will be retired*.

What this mean:
1) If you notice that you lack privileges then just email me and I'll
add you to the list (add your bugzilla email account)[1][2]
2) *MAB will be _equivalent_ to _highest_* (so anything that you
previously would have thrown on MAB list should be set to highest);
3) Severity should be according to the flowchart
https://wiki.documentfoundation.org/images/0/06/Prioritizing_Bugs_Flowchart.jpg;
4) Because users will be locked out it is incredibly important to
explain to them why we set the importance/severity the way we did -
leave a nice comment ;)

*Important: *If there are _any_ issues with this plan, you've got about
a week to shoot us an email so that we can work out any kinks. This was
in the making for the past 2 years and we're finally there.

Best,
Joel

[1] Robinson and myself will be combing through commiters and triagers
to try to add as many people as possible to contributor list as
possible without having to personally request access - if you notice
that you do not have privileges and want them you can email anyone with
admin privileges from bugzilla, if you want these privileges you can
request them. Without requesting contributor privileges you will be
prevented from changing severity/priority - all triagers/devs should
have these privileges.

[2] If you're interested in getting admin privileges please shoot me an
email asking for those and we can discuss it - for those of you who have
been really active in QA land, I encourage you to request the privileges
so that you can help maintain the bug tracker :)
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-qa] MAB/Priority and Severity

2015-05-31 Thread Joel Madero
Hi All!

So the time has finally arrived that we are moving forward with _locking
out priority/severity_. This means that *MAB will be retired*.

What this mean:
1) If you notice that you lack privileges then just email me and I'll
add you to the list (add your bugzilla email account)[1][2]
2) *MAB will be _equivalent_ to _highest_* (so anything that you
previously would have thrown on MAB list should be set to highest);
3) Severity should be according to the flowchart
https://wiki.documentfoundation.org/images/0/06/Prioritizing_Bugs_Flowchart.jpg;
4) Because users will be locked out it is incredibly important to
explain to them why we set the importance/severity the way we did -
leave a nice comment ;)

*Important: *If there are _any_ issues with this plan, you've got about
a week to shoot us an email so that we can work out any kinks. This was
in the making for the past 2 years and we're finally there.

Best,
Joel

[1] Robinson and myself will be combing through commiters and triagers
to try to add as many people as possible to contributor list as
possible without having to personally request access - if you notice
that you do not have privileges and want them you can email anyone with
admin privileges from bugzilla, if you want these privileges you can
request them. Without requesting contributor privileges you will be
prevented from changing severity/priority - all triagers/devs should
have these privileges.

[2] If you're interested in getting admin privileges please shoot me an
email asking for those and we can discuss it - for those of you who have
been really active in QA land, I encourage you to request the privileges
so that you can help maintain the bug tracker :)
___
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-bugs] [Bug 91761] Crash when copying contents from one form to another form

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91761

--- Comment #2 from christian_k...@gmx.net ---
Created attachment 116201
  -- https://bugs.documentfoundation.org/attachment.cgi?id=116201action=edit
backtrace for this kind of crash

Hello,

I have made a backtrace for this kind of crash. For reproducing this, it could
be necessary to edit something in the form navigator of the new created form.

-- 
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 91772] CRASH: DRAW: when export named no file extension.

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91772

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

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #3 from Julien Nabet serval2...@yahoo.fr ---
After having applied the same patch as the one I tried for tdf#91782, it seems
that by default format when letting All format is eps.

So this one is in fact a dup of tdf#91782

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

-- 
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 91782] Export draw-document to eps result in crash

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91782

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

   What|Removed |Added

 CC||souichi...@gmail.com

--- Comment #4 from Julien Nabet serval2...@yahoo.fr ---
*** Bug 91772 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 83299] Format Sections is disabled when the cursor is inside a protected section

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83299

Mohammed Sameer msam...@foolab.org changed:

   What|Removed |Added

 Status|RESOLVED|UNCONFIRMED
 Resolution|NOTOURBUG   |---

--- Comment #14 from Mohammed Sameer msam...@foolab.org ---
I received a docx document which has the same problem. I am attaching it here.
I have no idea how it was generated though.

I will also reopen this bug and I apologize if that is not considered an
appropriate behavior.

-- 
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 91782] Export draw-document to eps result in crash

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91782

--- Comment #5 from Julien Nabet serval2...@yahoo.fr ---
In vcl/README.lifecycle, I noticed this:
-   VirtualDevice aDev;
+   ScopedVclPtrInstanceVirtualDevice pDev;

May we blindly apply this to all these instances:
http://opengrok.libreoffice.org/search?q=%22ScopedVclPtr%3CVirtualDevice%3E%22project=coredefs=refs=path=hist=
?

-- 
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 48783] Clipboard cleared on exit on Linux

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=48783

Peter Evans pwe.worl...@gmail.com changed:

   What|Removed |Added

 CC||pwe.worl...@gmail.com

--- Comment #22 from Peter Evans pwe.worl...@gmail.com ---
I am a new user for Bugzilla, just wanted to report this issue but I've noted
this is a duplicate report.  Anyway, today I'm confirming that this no
clipboard persistence issue still exists, using LO Version: 4.2.8.2
Build ID: 420m0(Build:2) with Lubuntu Linux 14.04.  I noted this behavior
today.  Thanks for all of your good work, and best wishes for a future solution
to this minor 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 91761] Crash when copying contents from one form to another form

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91761

--- Comment #5 from christian_k...@gmx.net ---
Created attachment 116205
  -- https://bugs.documentfoundation.org/attachment.cgi?id=116205action=edit
new example

I could reproduce it with this example database and LO 4432. Following steps:

1) Open both forms (Demo 1 and Demo 2) in edit mode, not normally.
2) Select the contents of form 'Demo 1' and copy them to clipboard (Ctrl-C)
3) Paste the contents in form 'Demo 2' (Ctrl-V)
4) Open form navigator of form 'Demo 2'
4.1) Select all items unter 'demo 1' and move them to 'demo 2' (Delete 'demo
1')
6) Close form 'Demo 1'
7) Do something with the main window or form 'Demo 2' (resize it, press a
button in main window or whatever)

I have got the crash.

-- 
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 91574] SLIDESHOW: presenter console not shown and crash on exit

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91574

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

   Keywords||want-backtrace
 CC||jmadero@gmail.com

--- Comment #5 from Joel Madero jmadero@gmail.com ---
Would be nice for someone seeing this crash to get us a decent backtrace:
https://wiki.documentfoundation.org/How_to_get_a_backtrace_with_WinDbg

-- 
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 91422] Writer crashes/freezes during PDF export of large documents (about 200 pages)

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91422

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 CC||jmadero@gmail.com

--- Comment #8 from Joel Madero jmadero@gmail.com ---
No freeze for me -

Ubuntu 15.04
LibreOffice Version: 4.4.2.2

-- 
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' - 2 commits - include/vcl vcl/inc vcl/source vcl/unx

2015-05-31 Thread Jan Holesovsky
 include/vcl/salnativewidgets.hxx |5 +++--
 vcl/inc/opengl/x11/salvd.hxx |1 +
 vcl/inc/unx/gtk/gtkgdi.hxx   |3 ++-
 vcl/inc/unx/salinst.h|6 ++
 vcl/inc/unx/salvd.h  |7 +++
 vcl/source/outdev/nativecontrols.cxx |4 
 vcl/unx/generic/gdi/salvd.cxx|   27 ---
 vcl/unx/gtk/app/gtkinst.cxx  |6 +-
 vcl/unx/gtk/gdi/salnativewidgets-gtk.cxx |   11 ---
 9 files changed, 44 insertions(+), 26 deletions(-)

New commits:
commit 9f46ac8a7e7b65156a138c3d3d1fc480de8533f3
Author: Jan Holesovsky ke...@collabora.com
Date:   Sat May 23 15:31:51 2015 +0200

rendercontext: Initialize X11SalVirtualDevice with appropriate SalGraphics.

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

diff --git a/vcl/inc/opengl/x11/salvd.hxx b/vcl/inc/opengl/x11/salvd.hxx
index 2d60898..e4e6ecd 100644
--- a/vcl/inc/opengl/x11/salvd.hxx
+++ b/vcl/inc/opengl/x11/salvd.hxx
@@ -18,6 +18,7 @@
 
 class SalDisplay;
 class X11OpenGLSalGraphics;
+class X11SalGraphics;
 
 class X11OpenGLSalVirtualDevice : public SalVirtualDevice
 {
diff --git a/vcl/inc/unx/gtk/gtkgdi.hxx b/vcl/inc/unx/gtk/gtkgdi.hxx
index e0d0881..60b1513 100644
--- a/vcl/inc/unx/gtk/gtkgdi.hxx
+++ b/vcl/inc/unx/gtk/gtkgdi.hxx
@@ -26,12 +26,13 @@
 #include gdk/gdkkeysyms.h
 #include postx.h
 
+#include unx/gtk/gtkframe.hxx
+
 #if GTK_CHECK_VERSION(3,0,0)
 
 #include headless/svpgdi.hxx
 #include textrender.hxx
 
-class GtkSalFrame;
 class GtkSalGraphics : public SvpSalGraphics
 {
 GtkSalFrame *mpFrame;
diff --git a/vcl/inc/unx/salinst.h b/vcl/inc/unx/salinst.h
index b8feb71..381ddda 100644
--- a/vcl/inc/unx/salinst.h
+++ b/vcl/inc/unx/salinst.h
@@ -34,6 +34,8 @@ namespace com { namespace sun { namespace star { namespace 
datatransfer {
 } } } }
 
 class SalXLib;
+class X11SalGraphics;
+
 class VCLPLUG_GEN_PUBLIC X11SalInstance : public SalGenericInstance
 {
 private:
@@ -53,6 +55,10 @@ public:
 virtual SalObject*  CreateObject( SalFrame* pParent, 
SystemWindowData* pWindowData, bool bShow = true ) SAL_OVERRIDE;
 virtual voidDestroyObject( SalObject* pObject ) 
SAL_OVERRIDE;
 
+/// Gtk vclplug needs to pass GtkSalGraphics to X11SalVirtualDevice, so 
create it, and pass as pNewGraphics.
+virtual SalVirtualDevice* CreateX11VirtualDevice(SalGraphics* pGraphics, 
long nDX, long nDY,
+sal_uInt16 nBitCount, const SystemGraphicsData* pData, 
X11SalGraphics* pNewGraphics);
+
 virtual SalVirtualDevice*   CreateVirtualDevice( SalGraphics* pGraphics,
  long nDX, long nDY,
  sal_uInt16 nBitCount, 
const SystemGraphicsData *pData = NULL ) SAL_OVERRIDE;
diff --git a/vcl/inc/unx/salvd.h b/vcl/inc/unx/salvd.h
index 4f98c0c..14ad97e 100644
--- a/vcl/inc/unx/salvd.h
+++ b/vcl/inc/unx/salvd.h
@@ -44,10 +44,9 @@ class X11SalVirtualDevice : public SalVirtualDevice
 boolbExternPixmap_;
 
 public:
-X11SalVirtualDevice( SalGraphics *pGraphics,
- long nDX, long nDY,
- sal_uInt16 nBitCount,
- const SystemGraphicsData *pData );
+X11SalVirtualDevice(SalGraphics *pGraphics, long nDX, long nDY,
+sal_uInt16 nBitCount, const SystemGraphicsData *pData, 
X11SalGraphics* pNewGraphics);
+
 virtual ~X11SalVirtualDevice();
 
 Display *GetXDisplay() const
diff --git a/vcl/unx/generic/gdi/salvd.cxx b/vcl/unx/generic/gdi/salvd.cxx
index f64612b..847ea9d 100644
--- a/vcl/unx/generic/gdi/salvd.cxx
+++ b/vcl/unx/generic/gdi/salvd.cxx
@@ -35,14 +35,20 @@
 #include vcl/opengl/OpenGLHelper.hxx
 #include opengl/x11/salvd.hxx
 
-SalVirtualDevice* X11SalInstance::CreateVirtualDevice( SalGraphics* pGraphics,
-   long nDX, long nDY,
-   sal_uInt16 nBitCount, 
const SystemGraphicsData *pData )
+SalVirtualDevice* X11SalInstance::CreateX11VirtualDevice(SalGraphics* 
pGraphics,
+long nDX, long nDY, sal_uInt16 nBitCount, const SystemGraphicsData 
*pData,
+X11SalGraphics* pNewGraphics)
 {
 if (OpenGLHelper::isVCLOpenGLEnabled())
 return new X11OpenGLSalVirtualDevice( pGraphics, nDX, nDY, nBitCount, 
pData );
 else
-return new X11SalVirtualDevice( pGraphics, nDX, nDY, nBitCount, pData 
);
+return new X11SalVirtualDevice(pGraphics, nDX, nDY, nBitCount, pData, 
pNewGraphics);
+}
+
+SalVirtualDevice* X11SalInstance::CreateVirtualDevice(SalGraphics* pGraphics,
+long nDX, long nDY, sal_uInt16 nBitCount, const SystemGraphicsData 
*pData)
+{
+return 

[Libreoffice-bugs] [Bug 89613] Artifacts for icons and other UI elements

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89613

--- Comment #30 from Joel Madero jmadero@gmail.com ---
It's just a possibility. It is a misunderstanding to think just because it
worked before it will work now the same way. Our code is incredibly complex -
maybe before something in the code made it so the bug in a distro didn't show
but now our code got fixed and so the bug in the distro (or some particular
package in the distro) shows up. Again, this is just a guess. As I said, code
is really complex (far too complex for me to know what is going on here). But -
one of the people who were experiencing this bug before no longer experiences
it now that they are on Fedora 22 (Fedora 21 showed it). Maybe it's a simple
dependency issue and your package manager has not updated a necessary package
for openGL to function properly.

-- 
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/tango

2015-05-31 Thread Yousuf Philips
 icon-themes/tango/cmd/lc_currencyfield.png   |binary
 icon-themes/tango/cmd/lc_editheaderandfooter.png |binary
 icon-themes/tango/cmd/lc_insertannotation.png|binary
 icon-themes/tango/cmd/lc_inserttable.png |binary
 icon-themes/tango/cmd/lc_mergecells.png  |binary
 icon-themes/tango/cmd/lc_numberformatpercent.png |binary
 icon-themes/tango/cmd/lc_splitcell.png   |binary
 icon-themes/tango/cmd/lc_togglemergecells.png|binary
 icon-themes/tango/cmd/sc_currencyfield.png   |binary
 icon-themes/tango/cmd/sc_insertannotation.png|binary
 10 files changed

New commits:
commit f18096f1b5cce12033e6721fa6624f02e797acc3
Author: Yousuf Philips philip...@hotmail.com
Date:   Mon Jun 1 02:58:57 2015 +0400

TANGO: Fix a number of icons taken from tango testing

Change-Id: I5e6ae63ec9e9cc746e8d7546a6a4c9c3aaf7ad84
Reviewed-on: https://gerrit.libreoffice.org/16011
Reviewed-by: Yousuf Philips philip...@hotmail.com
Tested-by: Yousuf Philips philip...@hotmail.com

diff --git a/icon-themes/tango/cmd/lc_currencyfield.png 
b/icon-themes/tango/cmd/lc_currencyfield.png
index 7f09c08..7d60025 100644
Binary files a/icon-themes/tango/cmd/lc_currencyfield.png and 
b/icon-themes/tango/cmd/lc_currencyfield.png differ
diff --git a/icon-themes/tango/cmd/lc_editheaderandfooter.png 
b/icon-themes/tango/cmd/lc_editheaderandfooter.png
index 02378f6..104e613 100644
Binary files a/icon-themes/tango/cmd/lc_editheaderandfooter.png and 
b/icon-themes/tango/cmd/lc_editheaderandfooter.png differ
diff --git a/icon-themes/tango/cmd/lc_insertannotation.png 
b/icon-themes/tango/cmd/lc_insertannotation.png
index 3bdd56d..82d0e53 100644
Binary files a/icon-themes/tango/cmd/lc_insertannotation.png and 
b/icon-themes/tango/cmd/lc_insertannotation.png differ
diff --git a/icon-themes/tango/cmd/lc_inserttable.png 
b/icon-themes/tango/cmd/lc_inserttable.png
index 4efa3f7..7a66153 100644
Binary files a/icon-themes/tango/cmd/lc_inserttable.png and 
b/icon-themes/tango/cmd/lc_inserttable.png differ
diff --git a/icon-themes/tango/cmd/lc_mergecells.png 
b/icon-themes/tango/cmd/lc_mergecells.png
index d878bb3..69905c9 100644
Binary files a/icon-themes/tango/cmd/lc_mergecells.png and 
b/icon-themes/tango/cmd/lc_mergecells.png differ
diff --git a/icon-themes/tango/cmd/lc_numberformatpercent.png 
b/icon-themes/tango/cmd/lc_numberformatpercent.png
index 1f82dbc..079bc78 100644
Binary files a/icon-themes/tango/cmd/lc_numberformatpercent.png and 
b/icon-themes/tango/cmd/lc_numberformatpercent.png differ
diff --git a/icon-themes/tango/cmd/lc_splitcell.png 
b/icon-themes/tango/cmd/lc_splitcell.png
index 354f5c6..bafd01f 100644
Binary files a/icon-themes/tango/cmd/lc_splitcell.png and 
b/icon-themes/tango/cmd/lc_splitcell.png differ
diff --git a/icon-themes/tango/cmd/lc_togglemergecells.png 
b/icon-themes/tango/cmd/lc_togglemergecells.png
index d878bb3..69905c9 100644
Binary files a/icon-themes/tango/cmd/lc_togglemergecells.png and 
b/icon-themes/tango/cmd/lc_togglemergecells.png differ
diff --git a/icon-themes/tango/cmd/sc_currencyfield.png 
b/icon-themes/tango/cmd/sc_currencyfield.png
index ae67122..e403abc 100644
Binary files a/icon-themes/tango/cmd/sc_currencyfield.png and 
b/icon-themes/tango/cmd/sc_currencyfield.png differ
diff --git a/icon-themes/tango/cmd/sc_insertannotation.png 
b/icon-themes/tango/cmd/sc_insertannotation.png
index 7204aa9..f64ad4e 100644
Binary files a/icon-themes/tango/cmd/sc_insertannotation.png and 
b/icon-themes/tango/cmd/sc_insertannotation.png differ
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 91766] Automatic Language Detection for spell checking.

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91766

--- Comment #6 from Adolfo Jayme f...@libreoffice.org ---
Created attachment 116210
  -- https://bugs.documentfoundation.org/attachment.cgi?id=116210action=edit
We have had this feature since forever.

 Writer can't determine the language of different paragrpahs.

That assertion is simply incorrect.

-- 
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 91739] nvda can not read documents from top to bottom.

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91739

--- Comment #5 from James Teh ja...@nvaccess.org ---
LO *does* expose flowsFrom and flowsTo via IA2. The issue isn't that they
aren't exposed. The issue is that they don't expose paragraphs that are
currently off-screen in some cases.

So, steps to reproduce with the attached example document:
1. Open the document. The cursor will be at the first line.
2. Get the accessible for the first paragraph.
3. Call IAccessible::nRelations.
Result (correct): 1
4. Call IAccessible2::relations, passing 1 for maxRelations.
5. Get the first (and only) IAccessibleRelation returned.
6. On the relation from step 5, call IAccessibleRelation::relationType.
Result (correct): flowsTo
7. On the relation from step 5, call IAccessibleRelation::nTargets.
Result (correct): 1
8. On the relation from step 5, call IAccessibleRelation::target, passing 0 for
targetIndex.
Expected: An IUnknown for the second paragraph.
Actual: E_FAIL
9. In the document, press control+downArrow to move to the second paragraph.
10. On the relation from step 5, call IAccessibleRelation::target, passing 0
for targetIndex.
Result (correct): An IUnknown for the second paragraph.

Interestingly, if you then press control+home to move to the top of the
document and repeat step 10, you still get the second paragraph. So, it seems
that if you've retrieved the paragraph once already, you can retrieve it again
even if it goes off-screen.

-- 
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 91773] Add font folder support on Android

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91773

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||jmadero@gmail.com
 Ever confirmed|0   |1

--- Comment #1 from Joel Madero jmadero@gmail.com ---
In order to do this do you need a rooted device? Can you explain a bit more how
you add fonts this way and on what device you do it?

Setting to NEEDINFO - once you provide the info please set to UNCONFIRMED.
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 91757] print documents error.

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91757

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||jmadero@gmail.com
 Ever confirmed|0   |1

--- Comment #2 from Joel Madero jmadero@gmail.com ---
Hi Carlos -

What is your operating system? Is this a new problem? What dialogs are you
using (LibreOffice or native dialogs - you can check by going into tools -
options - general). What printer?

Please answer these questions and then set the bug back to UNCONFIRMED. Thanks

FWIW - I'm using 4.4.3.2 and everything prints fine (Ubuntu, Bodhi, Windows 7,
Windows 8, Windows XP)

-- 
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 91488] [META] RenderContext related issues

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91488
Bug 91488 depends on bug 91559, which changed state.

Bug 91559 Summary: Unable to open menu on Base Home
https://bugs.documentfoundation.org/show_bug.cgi?id=91559

   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 91559] Unable to open menu on Base Home

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91559

Tomaz Vajngerl qui...@gmail.com changed:

   What|Removed |Added

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

--- Comment #7 from Tomaz Vajngerl qui...@gmail.com ---
The fix is also backported to 5.0

http://cgit.freedesktop.org/libreoffice/core/commit/?id=b0922150c2b3a63b810af5adda2770f270185a61

-- 
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 91734] Bookmarks not sorted alphabetically

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91734

--- Comment #2 from JOHN DECOULOS johndecou...@gmail.com ---
NO, IT IS NOT  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


[Libreoffice-bugs] [Bug 91784] Android: on-screen keyboard visibility switch

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91784

--- Comment #1 from Marina Latini mar...@studiostorti.com ---
Created attachment 116208
  -- https://bugs.documentfoundation.org/attachment.cgi?id=116208action=edit
Phone details

Phone details

-- 
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 91603] Discarding recovery data after a crash doesn't forward to the requested application

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91603

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

   Priority|low |lowest
 CC||jmadero@gmail.com
   Hardware|x86-64 (AMD64)  |All
 Whiteboard||needsDevEval
   Severity|normal  |trivial

--- Comment #2 from Joel Madero jmadero@gmail.com ---
Trivial -

Has no real impact on creating professional work.

Trivial
Lowest - default for trivial bugs

Possibly an easy hack so requesting input.

-- 
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 91523] Crash on navigation by Index Entry

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91523

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 CC||jmadero@gmail.com

--- Comment #4 from Joel Madero jmadero@gmail.com ---
Can someone explain where next index entry is? When I bring up navigator - it
opens and shows IndexEntry (active) in the bottom drop down. For the life of
me I can't find Next index entry 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 91785] Crashes when opening empty document

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91785

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||jmadero@gmail.com
 Ever confirmed|0   |1

--- Comment #1 from Joel Madero jmadero@gmail.com ---
Please attach the blank document that you tried to open. Also please provide
information about what kind of device you are using.

Setting to NEEDINFO - once you provide the needed info please set to
UNCONFIRMED. 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 91771] Application start failure with error The application cannot be started. User installation could not be completed. is unhelpful

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91771

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||jmadero@gmail.com
   Hardware|x86-64 (AMD64)  |All
 Ever confirmed|0   |1
 OS|Linux (All) |All
   Severity|normal  |enhancement

--- Comment #2 from Joel Madero jmadero@gmail.com ---
Fine enhancement request. Marking as NEW.

FYI - unlikely to be implemented any time soon. This would require a major
rework of the code to signal what went wrong and then report it back. Would
require a volunteer to take on a relatively challenging enhancement request.

-- 
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 91531] Crash when opening files

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91531

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

   Keywords||have-backtrace, regression
 CC||jmadero@gmail.com

-- 
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 91500] Changing heading spacing above paragraph does not work with previous image with caption

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91500

Edmund Laugasson edmund.laugas...@gmail.com changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|NOTABUG |---
 Ever confirmed|0   |1

--- Comment #6 from Edmund Laugasson edmund.laugas...@gmail.com ---
(In reply to Gordo from comment #5)
 I opened document and turned on Non-printing Characters.  The frame is part
 of the paragraph with the text Title.  If you place the cursor before
 Title and Enter then the frame will be in a separate paragraph and the
 spacing above will work.
 
 Undoing the previous entering of a paragraph, if the frame is anchored as a
 character then it appears before Title.  If you place the cursor before
 Title and Enter then the frame will be in a separate paragraph and the
 spacing above will work.  Notice how that paragraph has the heading style
 and it has spacing above.
 
 Depending on how big the frame or image is, if it is not set to no wrap then
 the next paragraph (and the next) will appear directly below the previous
 paragraph and the image will be to the right.
 
 Windows Vista 64
 Version: 4.4.3.2
 Build ID: 88805f81e9fe61362df02b9941de8e38a9b5fd16
 
 Changed to RESOLVED NOTABUG.

I would say that this is workaround but not the solution. Adding empty rows
would be too time consuming when there is a lot of text and pictures. Program
purpose should be reduce working time and effort, not require it more. Such
hand-made additional work should be reduced.

Playing with empty rows gives the result but it quite uncomfortable way to
establish expected result. Even changing the frame wrap spacing gives the
expected space - I would expect that paragraph style spacing should work in the
same way as frame wrap spacing. This could be also configurable if to be more
flexible. But this would be bad idea to enter additional empty rows, especially
in long documents.

Changed to REOPENED.

-- 
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 91784] New: Android: on-screen keyboard visibility switch

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91784

Bug ID: 91784
   Summary: Android: on-screen keyboard visibility switch
   Product: LibreOffice
   Version: 5.0.0.0.alpha0+ Master
  Hardware: Other
OS: Android
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Android Viewer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mar...@studiostorti.com

Created attachment 116207
  -- https://bugs.documentfoundation.org/attachment.cgi?id=116207action=edit
LibreOffice Viewer Version

Execute the testcase number 160 Toggle the keyboard
url: http://manual-test.libreoffice.org/runtests/run/94/env/848/

1) Open a Writer document
* Tap inside a paragraph
* document is displayed correctly
* keyboard appears
PASS

2) Toggle the on-screen keyboard visibility off

Expected: keyboard is hidden
Current:  keyboard is shown
-- FAIL STEP

LibreOffice Viewer version: 5.0.0.0.alpha1+
build ID: ab465b9

Device: Nexus 4
Android Version: 5.1.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 91523] Crash on navigation by Index Entry

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91523

--- Comment #6 from Joel Madero jmadero@gmail.com ---
This is really confusing for me - I don't get that option. Image of what I see:
http://i.imgur.com/vSWWhyp.png?1

You can see the label of the 4th icon 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 91787] MATCH simple text match is not exact

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91787

--- Comment #1 from jmichaud02...@gmail.com ---
Scratch that.  The option to Search criteria = and  must apply to whole
cells is advertised as providing the needed behavior.

-- 
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 91787] MATCH simple text match is not exact

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91787

jmichaud02...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |NOTABUG

-- 
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/galaxy icon-themes/tango officecfg/registry sw/uiconfig

2015-05-31 Thread Yousuf Philips
 icon-themes/galaxy/links.txt |6 
 icon-themes/tango/links.txt  |6 
 officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu |   49 +
 officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu  |  116 ++-
 sw/uiconfig/swriter/menubar/menubar.xml  |  359 
++
 5 files changed, 390 insertions(+), 146 deletions(-)

New commits:
commit 6c189a1eb90012789692344aa7dc418c7ec7f032
Author: Yousuf Philips philip...@hotmail.com
Date:   Sun May 31 21:19:50 2015 +0400

tdf#91781 Reorganize writer's menu bar

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

diff --git a/icon-themes/galaxy/links.txt b/icon-themes/galaxy/links.txt
index dcdf49c..1ae02ae 100644
--- a/icon-themes/galaxy/links.txt
+++ b/icon-themes/galaxy/links.txt
@@ -63,3 +63,9 @@ cmd/sc_formatselection.png 
sfx2/res/symphony/sidebar-property-small.png
 cmd/lc_view3d.png sfx2/res/symphony/sidebar-3d-large.png
 cmd/sc_view3d.png sfx2/res/symphony/sidebar-3d-small.png
 
+# menu bar entries
+cmd/sc_sortdialog.png cmd/sc_sortup.png
+cmd/sc_mailmergewizard.png cmd/sc_autoformat.png
+cmd/sc_macrosmenu.png cmd/sc_trackchanges.png
+cmd/sc_showannotations.png cmd/sc_insertannotation.png
+
diff --git a/icon-themes/tango/links.txt b/icon-themes/tango/links.txt
index aa1b9c0..46dc5eb 100644
--- a/icon-themes/tango/links.txt
+++ b/icon-themes/tango/links.txt
@@ -547,3 +547,9 @@ cmd/sc_linespacing.png cmd/sc_spacepara15.png
 cmd/lc_insertrowbreak.png cmd/lc_insertpagebreak.png
 cmd/sc_insertrowbreak.png cmd/sc_insertpagebreak.png
 
+# menu bar entries
+cmd/sc_sortdialog.png cmd/sc_sortascending.png
+cmd/sc_mailmergewizard.png cmd/sc_autoformat.png
+cmd/sc_macrosmenu.png cmd/sc_trackchanges.png
+cmd/sc_showannotations.png cmd/sc_insertannotation.png
+
diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
index 3e12671..20eab49 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
@@ -2579,6 +2579,11 @@
   value9/value
 /prop
   /node
+  node oor:name=.uno:EditStyle oor:op=replace
+prop oor:name=Label oor:type=xs:string
+  value xml:lang=en-US~Edit Style.../value
+/prop
+  /node
   node oor:name=.uno:StyleNewByExample oor:op=replace
 prop oor:name=Label oor:type=xs:string
   value xml:lang=en-USNew Style from Selection/value
@@ -3092,6 +3097,22 @@
   value1/value
 /prop
   /node
+  node oor:name=.uno:InsertFrameMenu oor:op=replace
+prop oor:name=Label oor:type=xs:string
+  value xml:lang=en-US~Frame/value
+/prop
+prop oor:name=Properties oor:type=xs:int
+  value1/value
+/prop
+  /node
+  node oor:name=.uno:InsertFootnotesMenu oor:op=replace
+prop oor:name=Label oor:type=xs:string
+  value xml:lang=en-USFootnote and En~dnote/value
+/prop
+prop oor:name=Properties oor:type=xs:int
+  value1/value
+/prop
+  /node
   node oor:name=.uno:FormatImageMenu oor:op=replace
 prop oor:name=Label oor:type=xs:string
   value xml:lang=en-US~Image/value
@@ -3102,7 +3123,7 @@
   /node
   node oor:name=.uno:FormatTextMenu oor:op=replace
 prop oor:name=Label oor:type=xs:string
-  value xml:lang=en-USTe~xt/value
+  value xml:lang=en-US~Text/value
 /prop
 prop oor:name=Properties oor:type=xs:int
   value1/value
@@ -3116,6 +3137,30 @@
   value1/value
 /prop
   /node
+  node oor:name=.uno:FormatBulletsMenu oor:op=replace
+prop oor:name=Label oor:type=xs:string
+  value xml:lang=en-USLis~ts/value
+/prop
+prop oor:name=Properties oor:type=xs:int
+  value1/value
+/prop
+  /node
+  node oor:name=.uno:FormatStylesMenu oor:op=replace
+prop oor:name=Label oor:type=xs:string
+  value xml:lang=en-USSt~yles/value
+/prop
+prop oor:name=Properties oor:type=xs:int
+  value1/value
+/prop
+  /node
+  node oor:name=.uno:FormatFrameMenu oor:op=replace
+prop oor:name=Label oor:type=xs:string
+  value xml:lang=en-USFrame and OLE-Ob~ject/value
+/prop
+prop oor:name=Properties oor:type=xs:int
+  value1/value
+/prop
+  /node
   node oor:name=.uno:InsertGraphic oor:op=replace
 prop oor:name=Label oor:type=xs:string
   value xml:lang=en-US~Image.../value
@@ -5447,7 +5492,7 @@
   /node
   node oor:name=.uno:ObjectAlign 

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

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

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

   What|Removed |Added

 Whiteboard|| target:5.1.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-ux-advise] [Bug 91781] Reorganization of the menu bar for Writer

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

--- Comment #1 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Yousuf Philips committed a patch related to this issue.
It has been pushed to master:

http://cgit.freedesktop.org/libreoffice/core/commit/?id=6c189a1eb90012789692344aa7dc418c7ec7f032

tdf#91781 Reorganize writer's menu bar

It will be available in 5.1.0.

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 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 91785] New: Crashes when opening empty document

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91785

Bug ID: 91785
   Summary: Crashes when opening empty document
   Product: LibreOffice
   Version: 4.4.2.2 release
  Hardware: Other
OS: Android
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Android Viewer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: miggoy...@gmail.com

I tried opening a blank .odt file. It crashed.

-- 
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: MAB/Priority and Severity

2015-05-31 Thread m.a.riosv
Hi,

Maybe after update the flowchart, the link could go beside Importance
selection.
So an easy access is given for everybody.

Miguel Ángel.



--
View this message in context: 
http://nabble.documentfoundation.org/MAB-Priority-and-Severity-tp4150125p4150135.html
Sent from the Dev mailing list archive at Nabble.com.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 91496] Libreoffice crashes when using Actions button within Template Manager on Kubuntu 14.04.2

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91496

--- Comment #2 from Aron Budea ba...@caesar.elte.hu ---
I could reproduce this in Windows 7 with 5.0.0.0.beta1.
For example open New button's dropdown from the toolbar, then close it.

However the bug seems to be fixed on master, as it did not come up in
5.1.0.0.alpha1+ (Build ID: d813a3ca53504df145e96d85483091a1d0768073).

-- 
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 83350] LOCALIZATION: Arabic UI has status bar page numbering issue

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83350

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

   What|Removed |Added

 Resolution|FIXED   |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 91766] Automatic Language Detection for spell checking.

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91766

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

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |INVALID

-- 
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 91523] Crash on navigation by Index Entry

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91523

--- Comment #5 from Gordo gordon1dr...@yahoo.com ---
In Navigator, after you have changed to Index Entry in Navigation dialogue, the
Next Index Entry is fourth icon from left.  There are the two page looking
icons with up and down arrow before the number spinner box.

Toggle - Navigation - Previous index entry - Next index entry

-- 
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-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91781

--- Comment #2 from Adolfo Jayme f...@libreoffice.org ---
Hey!

If you’re going to push a radical change without letting us comment on it, why
do you pretend you welcome comments? I interpret this as you wanting us to be
excluded of the design team.

-- 
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 91764] editing diacritics in persian and arabic documents is not easy.

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91764

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||jmadero@gmail.com
 Ever confirmed|0   |1

--- Comment #1 from Joel Madero jmadero@gmail.com ---
Hey Zahra -

Can you explain the issue a bit clearer (preferably in numbered steps).

Example:
1. Open attached document;
2. Place cursor
3. Do step Z

. . . etc...

Very hard to follow a paragraph of text - explain how to reproduce the issue
with the document that you have attached.

Also just FYI - almost guaranteed this will not be resolved by 5.0 or even 5.1
- we are a team of volunteers, if a volunteer finds that bug to be interesting,
they will fix it, else, it will not be fixed. If you or someone you know is a
developer, we'd happily help you understand the code so that you can get this
issue resolved :)

Setting to NEEDINFO - once you describe the issue clearly please set to
UNCONFIRMED. 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-ux-advise] [Bug 91760] libre base: field formats (input masks) missing in [varchar]

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91760

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||jmadero@gmail.com,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org
  Component|Base|ux-advise
 Ever confirmed|0   |1
 OS|Windows (All)   |All

--- Comment #1 from Joel Madero jmadero@gmail.com ---
Setting to NEW and requesting design input.

-- 
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 91760] libre base: field formats (input masks) missing in [varchar]

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91760

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||jmadero@gmail.com,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org
  Component|Base|ux-advise
 Ever confirmed|0   |1
 OS|Windows (All)   |All

--- Comment #1 from Joel Madero jmadero@gmail.com ---
Setting to NEW and requesting design input.

-- 
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 91753] FORMATTING Regression: can't change character background in paragraph styles any more

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91753

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||jmadero@gmail.com
 Ever confirmed|0   |1
 OS|Linux (All) |All
   Severity|normal  |minor

--- Comment #1 from Joel Madero jmadero@gmail.com ---
Ubuntu 15.04
LibreOffice 4.4.3.2

Confirmed:
New
Minor - can slow down professional quality work but will not prevent it;
Medium - regression

I wonder if this was a design decision that was made on purposeI'm going to
bibisect it and see what I can find out.

-- 
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 91559] Unable to open menu on Base Home

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91559

--- Comment #6 from Tomaz Vajngerl qui...@gmail.com ---
Hi, this one is fixed with
http://cgit.freedesktop.org/libreoffice/core/commit/?id=b0922150c2b3a63b810af5adda2770f270185a61
- I entered the wrong bug number, sorry.

-- 
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 89613] Artifacts for icons and other UI elements

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89613

--- Comment #31 from Karsten forum+docum...@home.decotrain.de ---
Created attachment 116209
  -- https://bugs.documentfoundation.org/attachment.cgi?id=116209action=edit
LibreOfficeDev_5.1.0.0.alpha1_Linux_x86-64 with opengl disabled

I agree your argumentation.
Again i tested what happened when i disable hardware acceleration / opengl.
The problem remains.
So it must be a general problem of the rendering.

-- 
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: 2 commits - sw/qa sw/source

2015-05-31 Thread Matteo Casalin
 sw/qa/core/uwriter.cxx  |2 +-
 sw/source/filter/html/htmlftn.cxx   |2 +-
 sw/source/filter/xml/swxml.cxx  |2 +-
 sw/source/uibase/config/barcfg.cxx  |2 +-
 sw/source/uibase/docvw/AnnotationMenuButton.cxx |3 +--
 sw/source/uibase/lingu/sdrhhcwrap.cxx   |2 +-
 6 files changed, 6 insertions(+), 7 deletions(-)

New commits:
commit e61fcfea5c2a306e44a053976e921160e78917ac
Author: Matteo Casalin matteo.casa...@yahoo.com
Date:   Mon Jun 1 01:14:07 2015 +0200

WaE - Fix C4389: ´==´ : signed/unsigned mismatch

Change-Id: I049ca27a0b69887d7ab82312dd30311ddb2bed63

diff --git a/sw/source/filter/html/htmlftn.cxx 
b/sw/source/filter/html/htmlftn.cxx
index e0145c3..b8eaa26 100644
--- a/sw/source/filter/html/htmlftn.cxx
+++ b/sw/source/filter/html/htmlftn.cxx
@@ -275,7 +275,7 @@ Writer OutHTML_SwFormatFootnote( Writer rWrt, const 
SfxPoolItem rHt )
 if( rFormatFootnote.IsEndNote() )
 {
 nPos = rHTMLWrt.pFootEndNotes ? rHTMLWrt.pFootEndNotes-size() : 0;
-OSL_ENSURE( nPos == rHTMLWrt.nFootNote + rHTMLWrt.nEndNote,
+OSL_ENSURE( nPos == static_castsize_t(rHTMLWrt.nFootNote + 
rHTMLWrt.nEndNote),
 OutHTML_SwFormatFootnote: Position falsch );
 sClass = OOO_STRING_SVTOOLS_HTML_sdendnote_anc;
 sFootnoteName = OOO_STRING_SVTOOLS_HTML_sdendnote + OUString::number( 
(sal_Int32)(++rHTMLWrt.nEndNote) );
commit 8b55fe96cf64c64e4877d0ffa8ea694dc7dc8d17
Author: Matteo Casalin matteo.casa...@yahoo.com
Date:   Mon Jun 1 00:11:35 2015 +0200

Use auto or more proper integer types, avoid temporaries

Change-Id: Iae81c30d23aa61e92b8dfd79c326c554b4164987

diff --git a/sw/qa/core/uwriter.cxx b/sw/qa/core/uwriter.cxx
index 61d400b..d1e7460 100644
--- a/sw/qa/core/uwriter.cxx
+++ b/sw/qa/core/uwriter.cxx
@@ -1054,7 +1054,7 @@ void SwDocTest::randomTest()
 Jim, Bob, JimBobina, Helga, Gertrude, Spagna, Hurtleweed
 };
 
-for( sal_uInt16 rlm = 0; rlm  SAL_N_ELEMENTS(modes); rlm++ )
+for( size_t rlm = 0; rlm  SAL_N_ELEMENTS(modes); rlm++ )
 {
 m_pDoc-ClearDoc();
 
diff --git a/sw/source/filter/xml/swxml.cxx b/sw/source/filter/xml/swxml.cxx
index db7c64711..a14b839 100644
--- a/sw/source/filter/xml/swxml.cxx
+++ b/sw/source/filter/xml/swxml.cxx
@@ -383,7 +383,7 @@ static void lcl_AdjustOutlineStylesForOOo(SwDoc _rDoc)
 for ( sal_uInt8 i = 0; i  MAXLEVEL; ++i )
 {
 sStyleName =
-SwStyleNameMapper::GetProgName( static_cast sal_uInt16 
(RES_POOLCOLL_HEADLINE1 + i),
+SwStyleNameMapper::GetProgName( RES_POOLCOLL_HEADLINE1 + i,
 sStyleName );
 aDefOutlStyleNames[i] = sStyleName;
 }
diff --git a/sw/source/uibase/config/barcfg.cxx 
b/sw/source/uibase/config/barcfg.cxx
index 88cef25..3534285 100644
--- a/sw/source/uibase/config/barcfg.cxx
+++ b/sw/source/uibase/config/barcfg.cxx
@@ -38,7 +38,7 @@ SwToolbarConfigItem::SwToolbarConfigItem( bool bWeb ) :
 ConfigItem(bWeb ? OUString(Office.WriterWeb/ObjectBar) : 
OUString(Office.Writer/ObjectBar),
 ConfigItemMode::DelayedUpdate|ConfigItemMode::ReleaseTree)
 {
-for(sal_uInt16 i = 0; i = SEL_TYPE_GRAPHIC; i++ )
+for(int i = 0; i = SEL_TYPE_GRAPHIC; ++i)
 aTbxIdArray[i] = -1;
 
 SequenceOUString aNames = GetPropertyNames();
diff --git a/sw/source/uibase/docvw/AnnotationMenuButton.cxx 
b/sw/source/uibase/docvw/AnnotationMenuButton.cxx
index b2ff368..2df32e5 100644
--- a/sw/source/uibase/docvw/AnnotationMenuButton.cxx
+++ b/sw/source/uibase/docvw/AnnotationMenuButton.cxx
@@ -189,8 +189,7 @@ void AnnotationMenuButton::Paint(vcl::RenderContext 
rRenderContext, const Recta
 void AnnotationMenuButton::KeyInput(const KeyEvent rKeyEvt)
 {
 const vcl::KeyCode rKeyCode = rKeyEvt.GetKeyCode();
-const sal_uInt16 nKey = rKeyCode.GetCode();
-if (nKey == KEY_TAB)
+if (rKeyCode.GetCode() == KEY_TAB)
 {
 mrSidebarWin.ActivatePostIt();
 mrSidebarWin.GrabFocus();
diff --git a/sw/source/uibase/lingu/sdrhhcwrap.cxx 
b/sw/source/uibase/lingu/sdrhhcwrap.cxx
index e899234..5d8e364 100644
--- a/sw/source/uibase/lingu/sdrhhcwrap.cxx
+++ b/sw/source/uibase/lingu/sdrhhcwrap.cxx
@@ -122,7 +122,7 @@ bool SdrHHCWrapper::ConvertNextDocument()
 pTextObj = NULL;
 }
 
-sal_uInt16 n = nDocIndex;
+const auto n = nDocIndex;
 
 std::listSdrTextObj* aTextObjs;
 SwDrawContact::GetTextObjectsFromFormat( aTextObjs, 
pView-GetDocShell()-GetDoc() );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 91776] Start Center fails to honour shortcur R for Draw

2015-05-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91776

--- Comment #3 from V Stuart Foote vstuart.fo...@utsa.edu ---
The conflicting accelerator R was assigned with
http://cgit.freedesktop.org/libreoffice/core/commit/?id=fe421533614cce6819c72c16f19b8de19e0d99da
to provide means to return from template manager

-- 
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   >