[Libreoffice-commits] libvisio.git: src/lib src/test

2014-12-24 Thread Miklos Vajna
 src/lib/VSDXMetaData.cpp|   22 ++
 src/lib/VSDXMetaData.h  |1 +
 src/lib/tokens.txt  |1 +
 src/test/data/fdo86664.vsdx |binary
 src/test/importtest.cpp |1 +
 5 files changed, 25 insertions(+)

New commits:
commit a110b6351ae38eccd0bd089918941fbfea677397
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Wed Dec 24 10:19:19 2014 +0100

VSDX: import dc:creator

Sigh, ODF has dc:creator as well, but with different semantics.

Change-Id: I9425dc1b45c3c3cd9a1a97fb31f0ee087044814e

diff --git a/src/lib/VSDXMetaData.cpp b/src/lib/VSDXMetaData.cpp
index 697d003..3f0d9bc 100644
--- a/src/lib/VSDXMetaData.cpp
+++ b/src/lib/VSDXMetaData.cpp
@@ -56,6 +56,24 @@ void libvisio::VSDXMetaData::readSubject(xmlTextReaderPtr 
reader)
   m_metaData.insert(dc:subject, subject);
 }
 
+void libvisio::VSDXMetaData::readCreator(xmlTextReaderPtr reader)
+{
+  int ret = 1;
+  int tokenId = XML_TOKEN_INVALID;
+  int tokenType = -1;
+  librevenge::RVNGString creator;
+  do
+  {
+ret = xmlTextReaderRead(reader);
+tokenId = getElementToken(reader);
+tokenType = xmlTextReaderNodeType(reader);
+if (xmlTextReaderNodeType(reader) == XML_READER_TYPE_TEXT)
+  creator.append((const char *)xmlTextReaderConstValue(reader));
+  }
+  while ((XML_DC_CREATOR != tokenId || XML_READER_TYPE_END_ELEMENT != 
tokenType)  1 == ret);
+  m_metaData.insert(meta:initial-creator, creator);
+}
+
 void libvisio::VSDXMetaData::readCreated(xmlTextReaderPtr reader)
 {
   int ret = 1;
@@ -116,6 +134,10 @@ void 
libvisio::VSDXMetaData::readCoreProperties(xmlTextReaderPtr reader)
   if (tokenType == XML_READER_TYPE_ELEMENT)
 readSubject(reader);
   break;
+case XML_DC_CREATOR:
+  if (tokenType == XML_READER_TYPE_ELEMENT)
+readCreator(reader);
+  break;
 case XML_DCTERMS_CREATED:
   if (tokenType == XML_READER_TYPE_ELEMENT)
 readCreated(reader);
diff --git a/src/lib/VSDXMetaData.h b/src/lib/VSDXMetaData.h
index f8a8f9c..4ef382c 100644
--- a/src/lib/VSDXMetaData.h
+++ b/src/lib/VSDXMetaData.h
@@ -32,6 +32,7 @@ private:
   void readCoreProperties(xmlTextReaderPtr reader);
   void readTitle(xmlTextReaderPtr reader);
   void readSubject(xmlTextReaderPtr reader);
+  void readCreator(xmlTextReaderPtr reader);
   void readCreated(xmlTextReaderPtr reader);
   void readModified(xmlTextReaderPtr reader);
 
diff --git a/src/lib/tokens.txt b/src/lib/tokens.txt
index 8e0db55..84cc90d 100644
--- a/src/lib/tokens.txt
+++ b/src/lib/tokens.txt
@@ -227,6 +227,7 @@ XForm
 XForm1D
 Y
 cp:coreProperties
+dc:creator
 dc:subject
 dc:title
 dcterms:created
diff --git a/src/test/data/fdo86664.vsdx b/src/test/data/fdo86664.vsdx
index 1aafa80..2cfd89a 100644
Binary files a/src/test/data/fdo86664.vsdx and b/src/test/data/fdo86664.vsdx 
differ
diff --git a/src/test/importtest.cpp b/src/test/importtest.cpp
index b98269a..b42d256 100644
--- a/src/test/importtest.cpp
+++ b/src/test/importtest.cpp
@@ -141,6 +141,7 @@ void ImportTest::testVsdxMetadataTitle()
   // The setDocumentMetaData() call was missing, so the node did not exist.
   assertXPath(m_doc, /document/setDocumentMetaData, title, mytitle);
   assertXPath(m_doc, /document/setDocumentMetaData, subject, mysubject);
+  assertXPath(m_doc, /document/setDocumentMetaData, initial-creator, 
vmiklos creator);
   // Test dcterms:created and dcterms:modified.
   assertXPath(m_doc, /document/setDocumentMetaData, creation-date, 
2014-11-24T10:35:17Z);
   assertXPath(m_doc, /document/setDocumentMetaData, date, 
2014-11-24T10:41:22Z);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2014-12-24 Thread Miklos Vajna
 writerfilter/source/rtftok/rtfdocumentimpl.cxx |   21 ++---
 writerfilter/source/rtftok/rtflistener.hxx |8 
 writerfilter/source/rtftok/rtflookahead.cxx|2 +-
 writerfilter/source/rtftok/rtftokenizer.cxx|6 +++---
 4 files changed, 18 insertions(+), 19 deletions(-)

New commits:
commit c7da07ad5150d9c0d8e1a99b053009f103d792d9
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Wed Dec 24 10:20:30 2014 +0100

writerfilter: turn RTFInternalState into a C++11 scoped enumeration

Change-Id: I7407aeba6ddcfd783cee508faa6731c59d0b9759

diff --git a/writerfilter/source/rtftok/rtfdocumentimpl.cxx 
b/writerfilter/source/rtftok/rtfdocumentimpl.cxx
index 0664af6..66afbb4 100644
--- a/writerfilter/source/rtftok/rtfdocumentimpl.cxx
+++ b/writerfilter/source/rtftok/rtfdocumentimpl.cxx
@@ -997,7 +997,7 @@ RTFError RTFDocumentImpl::resolvePict(bool const bInline, 
uno::Referencedrawing
 
 RTFError RTFDocumentImpl::resolveChars(char ch)
 {
-if (m_aStates.top().nInternalState == INTERNAL_BIN)
+if (m_aStates.top().nInternalState == RTFInternalState::BIN)
 {
 m_pBinaryData.reset(new SvMemoryStream());
 m_pBinaryData-WriteChar(ch);
@@ -1006,7 +1006,7 @@ RTFError RTFDocumentImpl::resolveChars(char ch)
 Strm().ReadChar(ch);
 m_pBinaryData-WriteChar(ch);
 }
-m_aStates.top().nInternalState = INTERNAL_NORMAL;
+m_aStates.top().nInternalState = RTFInternalState::NORMAL;
 return RTFError::OK;
 }
 
@@ -1016,10 +1016,9 @@ RTFError RTFDocumentImpl::resolveChars(char ch)
 bool bUnicodeChecked = false;
 bool bSkipped = false;
 
-while (!Strm().IsEof()  (m_aStates.top().nInternalState == INTERNAL_HEX
-   || (ch != '{'  ch != '}'  ch != '\\')))
+while (!Strm().IsEof()  (m_aStates.top().nInternalState == 
RTFInternalState::HEX || (ch != '{'  ch != '}'  ch != '\\')))
 {
-if (m_aStates.top().nInternalState == INTERNAL_HEX || (ch != 0x0d  
ch != 0x0a))
+if (m_aStates.top().nInternalState == RTFInternalState::HEX || (ch != 
0x0d  ch != 0x0a))
 {
 if (m_aStates.top().nCharsToSkip == 0)
 {
@@ -1038,7 +1037,7 @@ RTFError RTFDocumentImpl::resolveChars(char ch)
 }
 
 // read a single char if we're in hex mode
-if (m_aStates.top().nInternalState == INTERNAL_HEX)
+if (m_aStates.top().nInternalState == RTFInternalState::HEX)
 break;
 
 if (RTL_TEXTENCODING_MS_932 == m_aStates.top().nCurrentEncoding)
@@ -1067,10 +1066,10 @@ RTFError RTFDocumentImpl::resolveChars(char ch)
 
 Strm().ReadChar(ch);
 }
-if (m_aStates.top().nInternalState != INTERNAL_HEX  !Strm().IsEof())
+if (m_aStates.top().nInternalState != RTFInternalState::HEX  
!Strm().IsEof())
 Strm().SeekRel(-1);
 
-if (m_aStates.top().nInternalState == INTERNAL_HEX  
m_aStates.top().nDestinationState != DESTINATION_LEVELNUMBERS)
+if (m_aStates.top().nInternalState == RTFInternalState::HEX  
m_aStates.top().nDestinationState != DESTINATION_LEVELNUMBERS)
 {
 if (!bSkipped)
 m_aHexBuffer.append(ch);
@@ -2185,7 +2184,7 @@ RTFError RTFDocumentImpl::dispatchSymbol(RTFKeyword 
nKeyword)
 }
 break;
 case RTF_HEXCHAR:
-m_aStates.top().nInternalState = INTERNAL_HEX;
+m_aStates.top().nInternalState = RTFInternalState::HEX;
 break;
 case RTF_CELL:
 case RTF_NESTCELL:
@@ -4526,7 +4525,7 @@ RTFError RTFDocumentImpl::dispatchValue(RTFKeyword 
nKeyword, int nParam)
 break;
 case RTF_BIN:
 {
-m_aStates.top().nInternalState = INTERNAL_BIN;
+m_aStates.top().nInternalState = RTFInternalState::BIN;
 m_aStates.top().nBinaryToRead = nParam;
 }
 break;
@@ -6135,7 +6134,7 @@ void RTFDocumentImpl::checkUnicode(bool bUnicode, bool 
bHex)
 
 RTFParserState::RTFParserState(RTFDocumentImpl* pDocumentImpl)
 : m_pDocumentImpl(pDocumentImpl),
-  nInternalState(INTERNAL_NORMAL),
+  nInternalState(RTFInternalState::NORMAL),
   nDestinationState(DESTINATION_NORMAL),
   nFieldStatus(FIELD_NONE),
   nBorderState(BORDER_NONE),
diff --git a/writerfilter/source/rtftok/rtflistener.hxx 
b/writerfilter/source/rtftok/rtflistener.hxx
index f37064c..0715557 100644
--- a/writerfilter/source/rtftok/rtflistener.hxx
+++ b/writerfilter/source/rtftok/rtflistener.hxx
@@ -16,11 +16,11 @@ namespace writerfilter
 {
 namespace rtftok
 {
-enum RTFInternalState
+enum class RTFInternalState
 {
-INTERNAL_NORMAL,
-INTERNAL_BIN,
-INTERNAL_HEX
+NORMAL,
+BIN,
+HEX
 };
 
 enum class RTFError
diff --git a/writerfilter/source/rtftok/rtflookahead.cxx 
b/writerfilter/source/rtftok/rtflookahead.cxx
index 00ab4a9..b90e8dd 100644
--- a/writerfilter/source/rtftok/rtflookahead.cxx
+++ b/writerfilter/source/rtftok/rtflookahead.cxx
@@ -93,7 +93,7 @@ void 

Re: Build / packaging instructions

2014-12-24 Thread Bjoern Michaelsen
Hi,

On Tue, Dec 23, 2014 at 09:57:26PM +0100, Maarten Hoes wrote:
 Okay, ill bite: why is there a need for contributors to the libreoffice
 project to locally re-create the exact same released binaries ?

FWUW, you can watch the stream to see this talk:

 https://events.ccc.de/congress/2014/Fahrplan/events/6240.html

for one hour of reasons on the topic in three days. ;)

Best,

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


[Bug 83795] Add UI for Wearable devices to the Impress Remote for Android

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83795

--- Comment #9 from Efstratios Kamadanis kam.stra...@gmail.com ---
Would it be a good idea to allow the user exit the mobile application while a
presentation is running,show a notification on the phone about it and allow the
wearable application control the presentation?

-- 
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-commits] core.git: include/svtools sfx2/source svtools/source unusedcode.easy

2014-12-24 Thread Caolán McNamara
 include/svtools/toolbarmenu.hxx  |8 
 sfx2/source/sidebar/AsynchronousCall.cxx |   11 ++-
 sfx2/source/sidebar/AsynchronousCall.hxx |1 -
 svtools/source/control/toolbarmenu.cxx   |   13 -
 unusedcode.easy  |1 +
 5 files changed, 3 insertions(+), 31 deletions(-)

New commits:
commit baa6458c8b1063e3b06f3d6d6ccef54f7e9250dd
Author: Caolán McNamara caol...@redhat.com
Date:   Wed Dec 24 11:03:59 2014 +

callcatcher: update unusedcode

Change-Id: I0b75dabfcb4a53dbbe361a34a6d9661a5b4aedd2

diff --git a/include/svtools/toolbarmenu.hxx b/include/svtools/toolbarmenu.hxx
index 230c33d..2b20a31 100644
--- a/include/svtools/toolbarmenu.hxx
+++ b/include/svtools/toolbarmenu.hxx
@@ -50,14 +50,6 @@ public:
  vcl::Window* pParentWindow,
  WinBits nBits );
 
-ToolbarMenu( const ::com::sun::star::uno::Reference 
::com::sun::star::frame::XFrame  rFrame,
- vcl::Window* pParentWindow,
- const ResId rResId );
-
-ToolbarMenu(vcl::Window* pParentWindow,
-const OString rID, const OUString rUIXMLDescription,
-const css::uno::Referencecss::frame::XFrame rFrame);
-
 virtual ~ToolbarMenu();
 
 virtual voidMouseMove( const MouseEvent rMEvt ) SAL_OVERRIDE;
diff --git a/sfx2/source/sidebar/AsynchronousCall.cxx 
b/sfx2/source/sidebar/AsynchronousCall.cxx
index 50f1a1c..bdd530a 100644
--- a/sfx2/source/sidebar/AsynchronousCall.cxx
+++ b/sfx2/source/sidebar/AsynchronousCall.cxx
@@ -40,14 +40,7 @@ AsynchronousCall::~AsynchronousCall (void)
 CancelRequest();
 }
 
-void AsynchronousCall::RequestCall (const Action rAction)
-{
-CancelRequest();
-maAction = rAction;
-RequestCall();
-}
-
-void AsynchronousCall::RequestCall (void)
+void AsynchronousCall::RequestCall()
 {
 if (mnCallId == 0)
 {
@@ -56,7 +49,7 @@ void AsynchronousCall::RequestCall (void)
 }
 }
 
-void AsynchronousCall::CancelRequest (void)
+void AsynchronousCall::CancelRequest()
 {
 if (mnCallId != 0)
 {
diff --git a/sfx2/source/sidebar/AsynchronousCall.hxx 
b/sfx2/source/sidebar/AsynchronousCall.hxx
index d3ecd5d..665a35b 100644
--- a/sfx2/source/sidebar/AsynchronousCall.hxx
+++ b/sfx2/source/sidebar/AsynchronousCall.hxx
@@ -38,7 +38,6 @@ public:
 AsynchronousCall (const Action rAction);
 ~AsynchronousCall (void);
 
-void RequestCall (const Action rAction);
 void RequestCall (void);
 void CancelRequest (void);
 
diff --git a/svtools/source/control/toolbarmenu.cxx 
b/svtools/source/control/toolbarmenu.cxx
index e8af87f..85e73bb 100644
--- a/svtools/source/control/toolbarmenu.cxx
+++ b/svtools/source/control/toolbarmenu.cxx
@@ -441,19 +441,6 @@ ToolbarMenu::ToolbarMenu( const Reference XFrame  
rFrame, vcl::Window* pParen
 implInit(rFrame);
 }
 
-ToolbarMenu::ToolbarMenu( const Reference XFrame  rFrame, vcl::Window* 
pParentWindow, const ResId rResId )
-: DockingWindow(pParentWindow, rResId)
-{
-implInit(rFrame);
-}
-
-ToolbarMenu::ToolbarMenu(vcl::Window* pParentWindow, const OString rID,
-const OUString rUIXMLDescription, const Reference XFrame  rFrame)
-: DockingWindow(pParentWindow, rID, rUIXMLDescription, rFrame)
-{
-implInit(rFrame);
-}
-
 void ToolbarMenu::implInit(const Reference XFrame  rFrame)
 {
 mpImpl = new ToolbarMenu_Impl( *this, rFrame );
diff --git a/unusedcode.easy b/unusedcode.easy
index 68004b9..cf8b3b4 100644
--- a/unusedcode.easy
+++ b/unusedcode.easy
@@ -192,6 +192,7 @@ sc::FormulaGroupAreaListener::isStartFixed() const
 sd::LeftDrawPaneShell::RegisterInterface(SfxModule*)
 sd::LeftImpressPaneShell::RegisterInterface(SfxModule*)
 sdr::contact::ViewContactOfTextObj::GetTextObj() const
+sfx2::sidebar::AsynchronousCall::RequestCall(boost::functionvoid () const)
 std::_Rb_treertl::OUString, std::pairrtl::OUString const, (anonymous 
namespace)::TemplateId, std::_Select1ststd::pairrtl::OUString const, 
(anonymous namespace)::TemplateId , std::lessrtl::OUString, 
std::allocatorstd::pairrtl::OUString const, (anonymous 
namespace)::TemplateId  ::_Rb_tree(std::_Rb_treertl::OUString, 
std::pairrtl::OUString const, (anonymous namespace)::TemplateId, 
std::_Select1ststd::pairrtl::OUString const, (anonymous 
namespace)::TemplateId , std::lessrtl::OUString, 
std::allocatorstd::pairrtl::OUString const, (anonymous 
namespace)::TemplateId  )
 std::__cxx1998::vectorrtl::Referenceoox::xls::(anonymous 
namespace)::WorkerThread, std::allocatorrtl::Referenceoox::xls::(anonymous 
namespace)::WorkerThread  ::reserve(unsigned long)
 vcl::MapChar(vcl::_TrueTypeFont*, unsigned short, bool)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Bug 83795] Add UI for Wearable devices to the Impress Remote for Android

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83795

--- Comment #10 from Efstratios Kamadanis kam.stra...@gmail.com ---
Update:
Added notifications. https://gerrit.libreoffice.org/#/c/13641/

TODO:
-Improve the way notifications are created.
-Improve the full screen UI.
-Optimize Google Api Client connection on both sides.
-Localization(?)

-- 
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-commits] core.git: 2 commits - configure.ac download.lst external/librevenge external/libwpd external/libwpg RepositoryExternal.mk

2014-12-24 Thread David Tardon
 RepositoryExternal.mk |   70 ++-
 configure.ac  |6 
 download.lst  |4 
 external/librevenge/ExternalPackage_librevenge.mk |2 
 external/libwpd/ExternalPackage_libwpd.mk |   22 ++
 external/libwpd/ExternalProject_libwpd.mk |4 
 external/libwpd/Library_wpd.mk|  204 ++
 external/libwpd/Module_libwpd.mk  |   16 +
 external/libwpg/ExternalPackage_libwpg.mk |   22 ++
 external/libwpg/ExternalProject_libwpg.mk |4 
 external/libwpg/Library_wpg.mk|   46 
 external/libwpg/Module_libwpg.mk  |   16 +
 12 files changed, 398 insertions(+), 18 deletions(-)

New commits:
commit a84f0aa8c30d744fdee5e36ad91fb8689ea2757c
Author: David Tardon dtar...@redhat.com
Date:   Wed Dec 24 14:41:49 2014 +0100

upload librevenge 0.0.2

Change-Id: Ie12b7ec9630d45e23fb11f12d2d4955855ae34cc

diff --git a/download.lst b/download.lst
index fc2941a..819eb04 100644
--- a/download.lst
+++ b/download.lst
@@ -129,8 +129,8 @@ export PYTHON_TARBALL := Python-3.3.5.tgz
 export RAPTOR_TARBALL := 4ceb9316488b0ea01acf011023cf7fff-raptor2-2.0.9.tar.gz
 export RASQAL_TARBALL := b12c5f9cfdb6b04efce5a4a186b8416b-rasqal-0.9.30.tar.gz
 export REDLAND_TARBALL := 
32f8e1417a64d3c6f2c727f9053f55ea-redland-1.0.16.tar.gz
-export REVENGE_MD5SUM := 69c367c6b0a360411965a1c409a0b6c1
-export REVENGE_TARBALL := librevenge-0.0.1.tar.bz2
+export REVENGE_MD5SUM := 2d4183bf17aea1a71842468a71a68c47
+export REVENGE_TARBALL := librevenge-0.0.2.tar.bz2
 export RHINO_TARBALL := 798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip
 export SERF_MD5SUM := 4f8e76c9c6567aee1d66aba49f76a58b
 export SERF_TARBALL := serf-1.2.1.tar.bz2
diff --git a/external/librevenge/ExternalPackage_librevenge.mk 
b/external/librevenge/ExternalPackage_librevenge.mk
index 2df2110..9766bfb 100644
--- a/external/librevenge/ExternalPackage_librevenge.mk
+++ b/external/librevenge/ExternalPackage_librevenge.mk
@@ -16,7 +16,7 @@ $(eval $(call 
gb_ExternalPackage_add_file,librevenge,$(LIBO_LIB_FOLDER)/libreven
 else ifeq ($(OS),WNT)
 $(eval $(call 
gb_ExternalPackage_add_file,librevenge,$(LIBO_LIB_FOLDER)/librevenge-0.0.dll,src/lib/.libs/librevenge-0.0.dll))
 else ifeq ($(filter IOS ANDROID,$(OS)),)
-$(eval $(call 
gb_ExternalPackage_add_file,librevenge,$(LIBO_LIB_FOLDER)/librevenge-0.0.so.0,src/lib/.libs/librevenge-0.0.so.0.0.1))
+$(eval $(call 
gb_ExternalPackage_add_file,librevenge,$(LIBO_LIB_FOLDER)/librevenge-0.0.so.0,src/lib/.libs/librevenge-0.0.so.0.0.2))
 endif
 
 # vim: set noet sw=4 ts=4:
commit c868a0c772a980dcc3045315c1e6f97f1433e88d
Author: David Tardon dtar...@redhat.com
Date:   Tue Dec 23 18:37:54 2014 +0100

build bundled libwpd and libwpg as shared libs

Change-Id: I7a00dfaa3252e2a0ab145ef8a4355f9bd14570da

diff --git a/RepositoryExternal.mk b/RepositoryExternal.mk
index 3b6d490..6360652a 100644
--- a/RepositoryExternal.mk
+++ b/RepositoryExternal.mk
@@ -2001,22 +2001,54 @@ gb_ExternalProject__use_wpd :=
 
 else # !SYSTEM_WPD
 
+ifeq ($(COM),MSC)
+
+$(eval $(call gb_Helper_register_libraries_for_install,PLAINLIBS_OOO,ooo,\
+   wpd \
+))
+
+define gb_LinkTarget__use_wpd
+$(call gb_LinkTarget_set_include,$(1),\
+   $(WPD_CFLAGS) \
+   $$(INCLUDE) \
+)
+$(call gb_LinkTarget_use_libraries,$(1),\
+   wpd \
+)
+
+endef
+
+define gb_ExternalProject__use_wpd
+$(call gb_ExternalProject_get_preparation_target,$(1)) : $(call 
gb_Library_get_target,wpd)
+
+endef
+
+else # !MSC
+
+$(eval $(call gb_Helper_register_packages_for_install,ooo, \
+   libwpd \
+))
+
 define gb_LinkTarget__use_wpd
+$(call gb_LinkTarget_use_package,$(1),libwpd)
+
 $(call gb_LinkTarget_set_include,$(1),\
$(WPD_CFLAGS) \
$$(INCLUDE) \
 )
 $(call gb_LinkTarget_add_libs,$(1),\
-   $(call 
gb_UnpackedTarball_get_dir,libwpd)/src/lib/.libs/libwpd-0.10$(gb_StaticLibrary_PLAINEXT)
 \
+   $(WPD_LIBS) \
 )
-$(call gb_LinkTarget_use_external_project,$(1),libwpd)
 
 endef
+
 define gb_ExternalProject__use_wpd
-$(call gb_ExternalProject_use_external_project,$(1),libwpd)
+$(call gb_ExternalProject_use_package,$(1),libwpd)
 
 endef
 
+endif # MSC
+
 endif # SYSTEM_WPD
 
 
@@ -2034,22 +2066,44 @@ gb_ExternalProject__use_wpg :=
 
 else # !SYSTEM_WPG
 
+ifeq ($(COM),MSC)
+
+$(eval $(call gb_Helper_register_libraries_for_install,PLAINLIBS_OOO,ooo,\
+   wpg \
+))
+
 define gb_LinkTarget__use_wpg
 $(call gb_LinkTarget_set_include,$(1),\
-I$(call gb_UnpackedTarball_get_dir,libwpg)/inc \
$$(INCLUDE) \
 )
-$(call gb_LinkTarget_add_libs,$(1),\
-   $(call 
gb_UnpackedTarball_get_dir,libwpg)/src/lib/.libs/libwpg-0.3$(gb_StaticLibrary_PLAINEXT)
 \
+$(call gb_LinkTarget_use_libraries,$(1),\
+   wpg \
 )
-$(call gb_LinkTarget_use_external_project,$(1),libwpg)
 
 endef
-define gb_ExternalProject__use_wpg
-$(call 

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

2014-12-24 Thread V Stuart Foote
 sw/source/core/doc/DocumentStylePoolManager.cxx |4 
 1 file changed, 4 deletions(-)

New commits:
commit 889f4705b90147d5653b08491579c51a7aca12be
Author: V Stuart Foote vstuart.fo...@utsa.edu
Date:   Wed Dec 24 20:10:23 2014 +0400

fdo#82041 restore heading 3 and 4 color to automatic

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

diff --git a/sw/source/core/doc/DocumentStylePoolManager.cxx 
b/sw/source/core/doc/DocumentStylePoolManager.cxx
index 089c9a5..a2c2175 100644
--- a/sw/source/core/doc/DocumentStylePoolManager.cxx
+++ b/sw/source/core/doc/DocumentStylePoolManager.cxx
@@ -491,18 +491,14 @@ SwTxtFmtColl* 
DocumentStylePoolManager::GetTxtCollFromPool( sal_uInt16 nId, bool
 case RES_POOLCOLL_HEADLINE3:// Headinline 3
 {
 SvxULSpaceItem aUL( PT_7, PT_6, RES_UL_SPACE );
-Color aCol( COL_GRAY );
 aSet.Put( aUL );
-aSet.Put( SvxColorItem ( aCol, RES_CHRATR_COLOR ) );
 lcl_SetHeadline( m_rDoc, pNewColl, aSet, nOutLvlBits, 2, 
false );
 }
 break;
 case RES_POOLCOLL_HEADLINE4:// Headinline 4
 {
 SvxULSpaceItem aUL( PT_6, PT_6, RES_UL_SPACE );
-Color aCol( COL_GRAY );
 aSet.Put( aUL );
-aSet.Put( SvxColorItem ( aCol, RES_CHRATR_COLOR ) );
 lcl_SetHeadline( m_rDoc, pNewColl, aSet, nOutLvlBits, 3, true 
);
 }
 break;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'ports/macosx10.5/master' - 1687 commits - accessibility/source android/Bootstrap android/experimental android/mobile-config.py android/Module_android.mk apple_r

2014-12-24 Thread Douglas Mencken
Rebased ref, commits from common ancestor:
commit 0cbcff2f90050ee3acb41835455d83cc214109b6
Author: Douglas Mencken dougmenc...@gmail.com
Date:   Wed Dec 24 10:47:02 2014 -0500

use -lobjc-gnu and GNUstep libraries when compiler is GCC

(for: vcl, apple_remote)

{note: GNUstep libraries are currently hard-coded}

Change-Id: Ia28778f3e262e71c87c48e71fbfd9001d5d6ac7a

diff --git a/apple_remote/Library_AppleRemote.mk 
b/apple_remote/Library_AppleRemote.mk
index cf48553..5d8cbfd 100644
--- a/apple_remote/Library_AppleRemote.mk
+++ b/apple_remote/Library_AppleRemote.mk
@@ -17,6 +17,10 @@ $(eval $(call 
gb_Library_use_system_darwin_frameworks,AppleRemote,\
 IOKit \
 ))
 
+$(eval $(call gb_Library_add_libs,AppleRemote,\
+$(if $(filter TRUE,$(COM_GCC_IS_CLANG)),-lobjc,-lobjc-gnu 
-L/usr/GNUstep/System/Library/Libraries -lgnustep-base -lgnustep-gui) \
+))
+
 $(eval $(call gb_Library_add_objcobjects,AppleRemote,\
 apple_remote/source/KeyspanFrontRowControl \
 apple_remote/source/AppleRemote \
diff --git a/vcl/Library_vcl.mk b/vcl/Library_vcl.mk
index e8df725..64aacc8 100644
--- a/vcl/Library_vcl.mk
+++ b/vcl/Library_vcl.mk
@@ -89,7 +89,7 @@ $(eval $(call gb_Library_add_libs,vcl,\
 -framework IOKit \
 -F/System/Library/PrivateFrameworks \
 -framework CoreUI \
--lobjc \
+$(if $(filter TRUE,$(COM_GCC_IS_CLANG)),-lobjc,-lobjc-gnu 
-L/usr/GNUstep/System/Library/Libraries -lgnustep-base -lgnustep-gui) \
 ))
 endif
 ifeq ($(OS),MACOSX)
commit 97bb398eb43994d117caa9b0bffc62dd84087d72
Author: Douglas Mencken dougmenc...@gmail.com
Date:   Sat Oct 25 11:03:56 2014 -0400

vcl: workarounds for `objc_msgSend setDelegate' on OS X 10.5

(vcl/osx/salframe.cxx, vcl/osx/salmenu.cxx)

plus, move conditional includes in salframe.cxx down a bit

Change-Id: I39886b4590f227ec69042fed0f5240ba0b0fd7f2

diff --git a/vcl/osx/salframe.cxx b/vcl/osx/salframe.cxx
index 929179f..8955577 100644
--- a/vcl/osx/salframe.cxx
+++ b/vcl/osx/salframe.cxx
@@ -37,11 +37,6 @@
 #include osx/a11yfactory.h
 #include quartz/utils.h
 
-#if MACOSX_SDK_VERSION  1060
-#include vcl/timer.hxx
-#include osx/saltimer.h
-#endif
-
 #include salwtype.hxx
 
 #include premac.h
@@ -54,6 +49,11 @@
 #include Carbon/Carbon.h
 #include postmac.h
 
+#if MACOSX_SDK_VERSION  1060
+#include vcl/timer.hxx
+#include osx/saltimer.h
+#endif
+
 using namespace std;
 
 AquaSalFrame* AquaSalFrame::s_pCaptureFrame = NULL;
@@ -201,16 +201,16 @@ void AquaSalFrame::initWindowAndView()
 [mpNSWindow setAcceptsMouseMovedEvents: YES];
 [mpNSWindow setHasShadow: YES];
 
-#if MACOSX_SDK_VERSION  1060
-objc_msgSend(mpNSWindow, @selector(setDelegate:), mpNSWindow);
-#else
+#if MACOSX_SDK_VERSION = 1060
+/* objc_msgSend(mpNSWindow, @selector(setDelegate:), mpNSWindow); */
 [mpNSWindow setDelegate: static_castidNSWindowDelegate (mpNSWindow)];
-#endif
 
 if( [mpNSWindow respondsToSelector: @selector(setRestorable:)])
 {
 objc_msgSend(mpNSWindow, @selector(setRestorable:), NO);
 }
+#endif
+
 const NSRect aRect = { NSZeroPoint, NSMakeSize( maGeometry.nWidth, 
maGeometry.nHeight )};
 mnTrackingRectTag = [mpNSView addTrackingRect: aRect owner: mpNSView 
userData: nil assumeInside: NO];
 
diff --git a/vcl/osx/salmenu.cxx b/vcl/osx/salmenu.cxx
index b6c68ee..e6941ba 100644
--- a/vcl/osx/salmenu.cxx
+++ b/vcl/osx/salmenu.cxx
@@ -246,9 +246,8 @@ AquaSalMenu::AquaSalMenu( bool bMenuBar ) :
 if( ! mbMenuBar )
 {
 mpMenu = [[SalNSMenu alloc] initWithMenu: this];
-#if MACOSX_SDK_VERSION  1060
-objc_msgSend(mpMenu, @selector(setDelegate:), mpMenu);
-#else
+#if MACOSX_SDK_VERSION = 1060
+/* objc_msgSend(mpMenu, @selector(setDelegate:), mpMenu); */
 [mpMenu setDelegate: (idNSMenuDelegate)mpMenu];
 #endif
 }
commit ebf6700869df744d4cb393ac687d26079977a7b2
Author: Douglas Mencken dougmenc...@gmail.com
Date:   Sun Oct 26 06:38:10 2014 -0400

vcl: fix some cannot convert 'objc_object*' to... issues

Change-Id: I4b0e32c412937da4b2ea4bf350be32ea31362b3c

diff --git a/vcl/osx/salframeview.mm b/vcl/osx/salframeview.mm
index 27be98d..1f98db1 100644
--- a/vcl/osx/salframeview.mm
+++ b/vcl/osx/salframeview.mm
@@ -482,7 +482,7 @@ static AquaSalFrame* getMouseContainerFrame()
 mpFrame = pFrame;
 mMarkedRange = NSMakeRange(NSNotFound, 0);
 mSelectedRange = NSMakeRange(NSNotFound, 0);
-mpReferenceWrapper = nil;
+mpReferenceWrapper = reinterpret_castReferenceWrapper*(nil);
 mpMouseEventListener = nil;
 mpLastSuperEvent = nil;
 }
@@ -1788,7 +1788,7 @@ private:
 // some frames never become visible ..
 ::vcl::Window *pWindow = mpFrame - GetWindow();
 if ( ! pWindow )
-return nil;
+return 
reinterpret_cast::com::sun::star::accessibility::XAccessibleContext*(nil);
 
 mpReferenceWrapper = new ReferenceWrapper;
 

Re: odr violation around external libs

2014-12-24 Thread David Tardon
Hi,

On Tue, Dec 23, 2014 at 12:09:36AM +0100, Markus Mohrhard wrote:
 Hey,
 
 creating a current asan build shows the following problem:
 
 ==8921==ERROR: AddressSanitizer: odr-violation (0x2acc613e2cc0):
   [1] size=40 'vtable for WPG1Parser' WPG1Parser.cpp
   [2] size=40 'vtable for WPG1Parser' WPG1Parser.cpp

This is now addressed on master with commit
c868a0c772a980dcc3045315c1e6f97f1433e88d build bundled libwpd and
libwpg as shared libs.

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


[Libreoffice-commits] core.git: RepositoryExternal.mk solenv/gbuild

2014-12-24 Thread David Tardon
 RepositoryExternal.mk  |1 +
 solenv/gbuild/CliUnoApi.mk |3 +--
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit c7b4aa22ebbaf24c5e98ef7311cc88f7e99f71f0
Author: David Tardon dtar...@redhat.com
Date:   Wed Dec 24 18:27:48 2014 +0100

all deps for tools are expected to be at one place

Change-Id: Ie0d359f6607811cd76aefe4e19d0fb05379f1762

diff --git a/RepositoryExternal.mk b/RepositoryExternal.mk
index 6360652a..06088c8 100644
--- a/RepositoryExternal.mk
+++ b/RepositoryExternal.mk
@@ -3768,6 +3768,7 @@ $(call gb_Executable_add_runtime_dependencies,climaker,\
$(call gb_Rdb_get_target_for_build,ure/services) \
$(INSTROOT)/$(LIBO_URE_MISC_FOLDER)/services.rdb \
$(call gb_UnoApi_get_target,udkapi) \
+   $(INSTROOT)/$(LIBO_URE_ETC_FOLDER)/$(call gb_Helper_get_rcfile,uno)
 )
 endef
 
diff --git a/solenv/gbuild/CliUnoApi.mk b/solenv/gbuild/CliUnoApi.mk
index 4c0b9aa..16f331b 100644
--- a/solenv/gbuild/CliUnoApi.mk
+++ b/solenv/gbuild/CliUnoApi.mk
@@ -13,8 +13,7 @@ gb_CliUnoApi_EXT := $(gb_CliAssembly_POLICYEXT)
 
 gb_CliUnoApi_KEYFILE_DEFAULT := $(gb_CliAssembly_KEYFILE_DEFAULT)
 
-gb_CliUnoApi_DEPS := $(call gb_Executable_get_runtime_dependencies,climaker) \
-$(INSTROOT)/$(LIBO_URE_ETC_FOLDER)/$(call gb_Helper_get_rcfile,uno)
+gb_CliUnoApi_DEPS := $(call gb_Executable_get_runtime_dependencies,climaker)
 gb_CliUnoApi_COMMAND := $(call gb_Executable_get_command,climaker)
 
 define gb_CliUnoApi__command
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


New Defects reported by Coverity Scan for LibreOffice

2014-12-24 Thread scan-admin

Hi,

Please find the latest report on new defect(s) introduced to LibreOffice found 
with Coverity Scan.

14 new defect(s) introduced to LibreOffice found with Coverity Scan.
23 defect(s), reported by Coverity Scan earlier, were marked fixed in the 
recent build analyzed by Coverity Scan.

New defect(s) Reported-by: Coverity Scan
Showing 14 of 14 defect(s)


** CID 1224711:  Uninitialized pointer field  (UNINIT_CTOR)
/usr/include/c++/4.9.2/bits/hashtable.h: 803 in std::_Hashtableunsigned int, 
std::pairconst unsigned int, unsigned int, std::allocatorstd::pairconst 
unsigned int, unsigned int, std::__detail::_Select1st, std::equal_tounsigned 
int, std::hashunsigned int, std::__detail::_Mod_range_hashing, 
std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, 
std::__detail::_Hashtable_traits(bool)0, (bool)0, 
(bool)1::_Hashtable(unsigned long, const std::hashunsigned int , const 
std::__detail::_Mod_range_hashing , const std::__detail::_Default_ranged_hash 
, const std::equal_tounsigned int , const std::__detail::_Select1st , 
const std::allocatorstd::pairconst unsigned int, unsigned int)()
/usr/include/c++/4.9.2/bits/hashtable.h: 803 in 
std::_Hashtablestd::basic_stringchar, std::char_traitschar, 
std::allocatorchar, std::pairconst std::basic_stringchar, 
std::char_traitschar, std::allocatorchar, unsigned int, 
std::allocatorstd::pairconst std::basic_stringchar, std::char_traitschar, 
std::allocatorchar, unsigned int, std::__detail::_Select1st, 
std::equal_tostd::basic_stringchar, std::char_traitschar, 
std::allocatorchar, std::hashstd::basic_stringchar, 
std::char_traitschar, std::allocatorchar, 
std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, 
std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits(bool)1, 
(bool)0, (bool)1::_Hashtable(unsigned long, const 
std::hashstd::basic_stringchar, std::char_traitschar, 
std::allocatorchar , const std::__detail::_Mod_range_hashing , const 
std::__detail::_Default_ranged_hash , const 
std::equal_tostd::basic_stringchar, std::char_traitschar, 
std::allocatorchar , const std::__detail::_Select1st , const 
std::allocatorstd::pairconst std::basic_stringchar, std::char_traitschar, 
std::allocatorchar, unsigned int)()
/usr/include/c++/4.9.2/bits/hashtable.h: 803 in std::_Hashtableunsigned int *, 
std::pairunsigned int *const , unsigned int, 
std::allocatorstd::pairunsigned int *const , unsigned int, 
std::__detail::_Select1st, GLTF::RemappedMeshIndexesEq, 
GLTF::RemappedMeshIndexesHash, std::__detail::_Mod_range_hashing, 
std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, 
std::__detail::_Hashtable_traits(bool)1, (bool)0, 
(bool)1::_Hashtable(unsigned long, const GLTF::RemappedMeshIndexesHash , 
const std::__detail::_Mod_range_hashing , const 
std::__detail::_Default_ranged_hash , const GLTF::RemappedMeshIndexesEq , 
const std::__detail::_Select1st , const std::allocatorstd::pairunsigned int 
*const , unsigned int)()

** CID 1260436:  Unchecked dynamic_cast  (FORWARD_NULL)
/sw/qa/extras/mailmerge/mailmerge.cxx: 238 in 
MMTest::documentStartPageNumber(int) const()

** CID 1260437:  Unchecked dynamic_cast  (FORWARD_NULL)
/sw/qa/extras/mailmerge/mailmerge.cxx: 372 in 
testPageBoundariesSimpleMailMerge::verify()()

** CID 1260438:  Unchecked dynamic_cast  (FORWARD_NULL)
/sw/qa/extras/mailmerge/mailmerge.cxx: 50 in MMTest::tearDown()()

** CID 1260439:  Explicit null dereferenced  (FORWARD_NULL)
/svtools/qa/unit/GraphicObjectTest.cxx: 165 in 
unnamed::GraphicObjectTest::testSizeBasedAutoSwap()()

** CID 1260440:  Unchecked dynamic_cast  (FORWARD_NULL)
/sw/qa/extras/globalfilter/globalfilter.cxx: 155 in 
Test::testLinkedGraphicRT()()

** CID 1260441:  Unchecked dynamic_cast  (FORWARD_NULL)
/sw/qa/extras/mailmerge/mailmerge.cxx: 386 in 
testPageBoundaries2Pages::verify()()

** CID 1260442:  Explicit null dereferenced  (FORWARD_NULL)
/svtools/qa/unit/GraphicObjectTest.cxx: 164 in 
unnamed::GraphicObjectTest::testSizeBasedAutoSwap()()

** CID 1260443:  Unchecked dynamic_cast  (FORWARD_NULL)
/sd/qa/unit/export-tests.cxx: 636 in SdExportTest::testLinkedGraphicRT()()

** CID 1260444:  Unchecked dynamic_cast  (FORWARD_NULL)
/svtools/qa/unit/GraphicObjectTest.cxx: 157 in 
unnamed::GraphicObjectTest::testSizeBasedAutoSwap()()

** CID 1260445:  Unchecked dynamic_cast  (FORWARD_NULL)
/sw/qa/extras/uiwriter/uiwriter.cxx: 660 in SwUiWriterTest::testMergeDoc()()

** CID 1260446:  Uninitialized scalar field  (UNINIT_CTOR)
/sc/source/core/tool/scmatrix.cxx: 1913 in 
wrapped_iteratormdds::mtv::default_element_block(int)8, bool, 
unnamed::SubOp::wrapped_iterator(std::_Bit_const_iterator, 
unnamed::SubOp)()
/sc/source/core/tool/scmatrix.cxx: 1913 in 
wrapped_iteratormdds::mtv::default_element_block(int)8, bool, 
unnamed::AddOp::wrapped_iterator(std::_Bit_const_iterator, 
unnamed::AddOp)()

** CID 1260447:  Uninitialized scalar field  (UNINIT_CTOR)
/sc/source/core/tool/scmatrix.cxx: 1913 in 

[Libreoffice-commits] core.git: Branch 'aoo/trunk' - extensions.lst

2014-12-24 Thread Andrea Pescetti
 extensions.lst |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 53c3d2012818e2bbcd1daf3c120a48d1adcf5071
Author: Andrea Pescetti pesce...@apache.org
Date:   Wed Dec 24 19:48:20 2014 +

#i125965# Update the English dictionary.

diff --git a/extensions.lst b/extensions.lst
index d88fd8b9..57b650d 100644
--- a/extensions.lst
+++ b/extensions.lst
@@ -39,7 +39,7 @@
 
 # English dictionary
 [ language=en.* || language=de || language=it ]
-3ae393028c36c0b4a60041f85ce8133e 
http://sourceforge.net/projects/aoo-extensions/files/17102/6/dict-en.oxt/download
 dict-en.oxt
+119de082977cacc804ba56b044b87524 
http://sourceforge.net/projects/aoo-extensions/files/17102/9/dict-en.oxt/download
 dict-en.oxt
 
 # English (USA, en_US) dictionary
 [ language==nl || language==ru ]
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2014-12-24 Thread Marco Cecchetti
 chart2/source/view/axes/VCartesianAxis.cxx |   27 ---
 1 file changed, 20 insertions(+), 7 deletions(-)

New commits:
commit e3663390d351c3759c22ae5a4fc44fd869c4479f
Author: Marco Cecchetti marco.cecche...@collabora.com
Date:   Wed Dec 24 20:56:55 2014 +0100

bnc#830738 Now all axis labels of a chart are displaied.

Problem:
Some axis labels of a chart are missing, when they should not.

Analysis and solution:
The current implementation is affected by the following issues:

1) When the method switches to the 45-degrees layout the
`nRhythm` parameter is not reset to 1.
2) The bounding boxes computed by the `doesOverlap` test routine
for the 45-degrees layout are wrong.

Because of the first issue only one label every `nRhythm` is showed
even if in the 45-degrees layout no overlap occurs.

The second issue is located inside the `lcl_getRotatedPolygon`
routine which is used by the `doesOverlap` routine for building a
polygon representing the bb for a text label. The polygon is created
in the following way: a new rectangle is created: the top-left vertex is
placed at axes origin and it is initialized with the same width and
height of the bb of the passed text label. Later several
transformations are performed on the new rectangle:
1) the rectangle is rotated by a 45-degrees angle respect with its
center; 2) the rectangle is translated by a vector equals to the
top-left vertex of the bb of the passed text label.
There are 2 errors in this sequence of transformations:
1) The `B2DHomMatrix` class used for representing the
transformation, performs rotations in the positive direction (from
the X axis to the Y axis). However since the coordinate system used
by the chart has the Y-axis pointing downward, a rotation in the
positive direction means a clockwise rotation. On the contrary text
labels are rotated counterclockwise. This can be easily fixed by
using the opposite angle. 2) Rotating the rectangle respect with its
center is wrong since the fixed point of the rotation must be the
top-left corner of the rectangle: in this way when the final
translation is performed the top-left vertex of the transformed
rectangle will be coincident with the top-left vertex of the text label
bb, and so the transformed rectangle will be coincident with the text
label bb.

Change-Id: Ia8072c3d5bd6c1a11f66c33d45d56e55634edf4c

diff --git a/chart2/source/view/axes/VCartesianAxis.cxx 
b/chart2/source/view/axes/VCartesianAxis.cxx
index 1209664..957b9af 100644
--- a/chart2/source/view/axes/VCartesianAxis.cxx
+++ b/chart2/source/view/axes/VCartesianAxis.cxx
@@ -132,14 +132,21 @@ bool lcl_doesShapeOverlapWithTickmark( const Reference 
drawing::XShape  xShap
 
 void lcl_getRotatedPolygon( B2DPolygon aPoly, const ::basegfx::B2DRectangle 
aRect, const awt::Point aPos, const double fRotationAngleDegree )
 {
-::basegfx::B2DHomMatrix aMatrix;
-
 aPoly = basegfx::tools::createPolygonFromRect( aRect );
-aMatrix.translate( -aRect.getWidth()/2, -aRect.getHeight()/2);
-aMatrix.rotate( fRotationAngleDegree*M_PI/180.0 );
-aPoly.transform( aMatrix );
-aMatrix = ::basegfx::B2DHomMatrix();
-aMatrix.translate( aRect.getWidth()/2+aPos.X, aRect.getHeight()/2+aPos.Y);
+
+// For rotating the rectangle we use the opposite angle,
+// since `B2DHomMatrix` class used for
+// representing the transformation, performs rotations in the positive
+// direction (from the X axis to the Y axis). However since the coordinate
+// system used by the chart has the Y-axis pointing downward, a rotation in
+// the positive direction means a clockwise rotation. On the contrary text
+// labels are rotated counterclockwise.
+// The rotation is performed around the top-left vertex of the rectangle
+// which is then moved to its final position by using the top-left
+// vertex of the text label bounding box (aPos) as the translation vector.
+::basegfx::B2DHomMatrix aMatrix;
+aMatrix.rotate( -fRotationAngleDegree*M_PI/180.0 );
+aMatrix.translate( aPos.X, aPos.Y);
 aPoly.transform( aMatrix );
 }
 
@@ -839,9 +846,12 @@ bool VCartesianAxis::createTextShapes(
 // Try auto-rotating the labels at 45 degrees and
 // start over.  This rotation angle will be stored for
 // all future text shape creation runs.
+// The nRhythm parameter is reset to 1 since the layout
+// used for text labels is changed.
 rAxisLabelProperties.autoRotate45();
 m_aAxisLabelProperties.fRotationAngleDegree = 
rAxisLabelProperties.fRotationAngleDegree; // Store it for future runs.
 removeTextShapesFromTicks();
+

build process stopped athsqldb_empty.odb

2014-12-24 Thread aron
Hi
I can' t build libreoffice-4.2.7.2 and 4.2.8.2, The build process always
stopped when this window showed.

​
When I force closed this window I got this error message

[build CHK] sc
[build SLC] chart2
[build SLC] sc
[build SLC] libreoffice
[build SLC] loaded modules: UnoControls accessibility accessories afms
android animations apache-commons apple_t bridges canvas chart2 cli_ure
clucene codemaker comphelper configmgr connectivity cppcanvas cppu
cppuhelper cbeddedobj embedserv eventattacher expat extensions external
extras filter firebird forms formula fpicker framew8npool i18nutil icu idl
idlc instsetoo_native io javaunohelper jfreereport jpeg jurt jvmaccess
jvmfwk l10ntoolsd liblangtag libmspub libmwaw libodfgen liborcus libpng
librelogo libreoffice libvisio libwpd libwpg libwps libs more_fonts
msc-externals mythes neon np_sdk nss o3tl odk offapi officecfg oovbaapi oox
openssl package padminoo redland registry remotebridges reportbuilder
reportdesign rhino ridljar rsc sal salhelper sax sc scaddins scsolenv
soltools sot starmath stoc store svgio svl svtools svx sw swext sysui test
testtools toolkit tools touchs unoxml ure uui vbahelper vcl vigra wizards
writerfilter writerperfect xmerge xmlhelp xmloff xmlreader xmlscri

Error: a unit test failed, please do one of:

export DEBUGCPPUNIT=TRUE# for exception catching
export CPPUNITTRACE=gdb --args # for interactive debugging on linux
export CPPUNITTRACE=[full path to devenv.exe] /debugexe # for
interactive debugging in Visual Studio
export VALGRIND=memcheck# for memory checking

and retry using: make CppunitTest_dbaccess_hsqldb_test

make[1]: *** [D:/lo/lo-core/workdir/CppunitTest/dbaccess_hsqldb_test.test]
Error 1
make[1]: *** Waiting for unfinished jobs


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


LibreOffice Gerrit News for core on 2014-12-25

2014-12-24 Thread gerrit
Moin!

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

 First time contributors doing great things! 
+ svx, canvas, desktop: gb_OBJCXXFLAGS are not needed at all
  in https://gerrit.libreoffice.org/13645 from Douglas Mencken
  about module canvas, desktop, svx
+ gbuild: introduce add_objcxxflags_exception_object/objects
  in https://gerrit.libreoffice.org/11815 from Douglas Mencken
  about module sal, solenv
+ vcl, toolkit: don't force gb_OBJCXXFLAGS for all .cxx files
  in https://gerrit.libreoffice.org/11816 from Douglas Mencken
  about module toolkit, vcl
+ get rid of obsolete code for 32-bit targets
  in https://gerrit.libreoffice.org/13640 from Douglas Mencken
  about module vcl
+ fdo#87675-Edit button near drop-down lists in paragraph style propertie
  in https://gerrit.libreoffice.org/13639 from Heena Gupta
  about module include, sfx2
+ Drop MAC_OS_X_VERSION_... variables
  in https://gerrit.libreoffice.org/13212 from Douglas Mencken
  about module build, solenv
 End of freshness 

+ fdo#69552 [part 1] make calc functions CEILING comply with ODF1.2
  in https://gerrit.libreoffice.org/7088 from Winfried Donkers
  about module formula, include, sc


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

+ fdo#82041 restore heading 3 and 4 color to automatic
  in https://gerrit.libreoffice.org/13642 from Yousuf Philips
+ build bundled libwpd and libwpg as shared libs
  in https://gerrit.libreoffice.org/13630 from David Tardon
+ ICONS: Add duplicate reference for flip commands in impress/draw
  in https://gerrit.libreoffice.org/13637 from Yousuf Philips
+ fdo#84233 rearrange impress's slide context menu and minor fix bugs in dr
  in https://gerrit.libreoffice.org/13599 from Yousuf Philips


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

+ toolkit: don't force gb_OBJCXXFLAGS for all .cxx files
  in https://gerrit.libreoffice.org/12166 from Douglas Mencken


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

+ fdo#58194 - export DOCX Automatic indent as firstLine indent
  in https://gerrit.libreoffice.org/10425 from Joren De Cuyper
+ fdo#82335.
  in https://gerrit.libreoffice.org/11555 from Sudarshan Rao
+ fdo#39625 Make existing CppUnittests work
  in https://gerrit.libreoffice.org/11605 from Tobias Madl
+ fdo#86606 removal of direct formatting options from the context menu
  in https://gerrit.libreoffice.org/13196 from Yousuf Philips
+ fdo#86784 make soffice commandline in juh Bootstrap.bootstrap() configura
  in https://gerrit.libreoffice.org/13290 from Christoph Lutz
+ Fix Python build in debug mode for x64 Windows
  in https://gerrit.libreoffice.org/13089 from David Ostrovsky
+ Replace image-sort.pl with image-sort.py
  in https://gerrit.libreoffice.org/13124 from Marcos Paulo de Souza
+ start detection of kf5 stuff in configure.ac
  in https://gerrit.libreoffice.org/13079 from Jonathan Riddell
+ fdo#65209 attempt to enable daylight saving time
  in https://gerrit.libreoffice.org/11441 from Lim Jing
+ Move more places to boost::signal2 in math
  in https://gerrit.libreoffice.org/13065 from Marcos Paulo de Souza
+ more breeze icons
  in https://gerrit.libreoffice.org/13058 from Jonathan Riddell
+ vcl: change Timer and Idle to use boost's Signal2
  in https://gerrit.libreoffice.org/12528 from Chris Sherlock
+ Removed useless includes in accessibility/ tree
  in https://gerrit.libreoffice.org/12948 from Andrea Gelmini
+ Perftest for loading autocorrect dictionaries, related fdo#79761
  in https://gerrit.libreoffice.org/11296 from Matúš Kukan
+ HIG-ification of GSoC Color Picker dialog
  in https://gerrit.libreoffice.org/11494 from Olivier Hallot
+ WIP: fdo#43090: Add an option to disable autoclose brackets
  in https://gerrit.libreoffice.org/12024 from Marcos Paulo de Souza


Best,

Your friendly LibreOffice Gerrit Digest Mailer

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


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

2014-12-24 Thread Tomaž Vajngerl
 svtools/source/control/tabbar.cxx |   17 +
 1 file changed, 17 insertions(+)

New commits:
commit 2a20bf5105181d51aab40bdd4ce8c09615a0e599
Author: Tomaž Vajngerl tomaz.vajng...@collabora.co.uk
Date:   Thu Dec 25 16:51:58 2014 +0900

fdo#87596 Draw tab fill color when selected on the tab bottom

Change-Id: I02bcdf88063d272cb9eb9e89cbee61d30f4f01d6

diff --git a/svtools/source/control/tabbar.cxx 
b/svtools/source/control/tabbar.cxx
index a7f8d0a..df45845 100644
--- a/svtools/source/control/tabbar.cxx
+++ b/svtools/source/control/tabbar.cxx
@@ -1168,6 +1168,16 @@ public:
 }
 }
 
+void drawColorLine()
+{
+Point p1 = maPoly[1];
+Point p2 = maPoly[2];
+p1 += Point(1, 0);
+p2 += Point(-1, -3);
+
+mrParent.DrawRect(Rectangle(p1, p2));
+}
+
 void drawTab()
 {
 mrParent.SetLineColor(mpStyleSettings-GetDarkShadowColor());
@@ -1188,6 +1198,13 @@ public:
 }
 
 drawOuterFrame();
+
+if (mbCustomColored  mbSelected)
+{
+mrParent.SetFillColor(maCustomColor);
+mrParent.SetLineColor(maCustomColor);
+drawColorLine();
+}
 }
 
 void drawPlusImage()
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: [Libreoffice-qa] minutes of ESC call ...

2014-12-24 Thread Bjoern Michaelsen
Hi,

On Tue, Dec 23, 2014 at 10:31:35PM +0100, Cor Nouws wrote:
 One thing that may be handled too: when confirming also check if it
 worked before (regression or not) and such.

True. In the end a fully triaged (aka a bug that a QA guys can do nothing more
about and that only can be moved forward by a developer) is either:

1/ a regression, which has been bibisected
2/ a non-regression, missing feature (enhancement)
3/ a non-regression, bug introduced with new feature from the start

We have proper tags to identify the first two of the above, but nothing to tag
the last group. If we _had_ a whiteboard status for number three too, we could
query for confirmed bugs that are:

- not a bibisected regression
- not an enhancement request
- not marked as a bug introduced with a new feature from the start

and have a list of confirmed bugs that QA can still help about. As such Id
suggest maybe a whiteboard status newfeaturebug for this. Opinions?

Best,

Bjoern

P.S.: Note there is some wiggle room in distingushing group 2/ and 3/. IMHO if
a developer of a feature says its group 2/ (aka that it was not in the planned
scope of the new feature) that should be accepted in general (and possibly also
documented that way).
___
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/

Re: [Libreoffice-qa] minutes of ESC call ...

2014-12-24 Thread Cor Nouws
Bjoern Michaelsen wrote on 24-12-14 11:20:
 True. In the end a fully triaged (aka a bug that a QA guys can do nothing more
 about and that only can be moved forward by a developer) is either:
 
[...]

And confirming without checking if the bug is in one of the categories
makes working with reported issues / BugZilla harder



-- 
Cor Nouws
GPD key ID: 0xB13480A6 - 591A 30A7 36A0 CE3C 3D28  A038 E49D 7365 B134 80A6
- vrijwilliger http://nl.libreoffice.org
- volunteer http://www.libreoffice.org
- The Document Foundation Membership Committee Member
___
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/

Re: [Libreoffice-qa] minutes of ESC call ...

2014-12-24 Thread Cor Nouws
Bjoern Michaelsen wrote on 24-12-14 11:20:
 and have a list of confirmed bugs that QA can still help about. As such Id
 suggest maybe a whiteboard status newfeaturebug for this. Opinions?

Looks good.
Thanks,
Cor

-- 
Cor Nouws
GPD key ID: 0xB13480A6 - 591A 30A7 36A0 CE3C 3D28  A038 E49D 7365 B134 80A6
- vrijwilliger http://nl.libreoffice.org
- volunteer http://www.libreoffice.org
- The Document Foundation Membership Committee Member
___
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/

Re: [Libreoffice-qa] minutes of ESC call ...

2014-12-24 Thread Robert Großkopf
Hi Bjoern,

 
 True. In the end a fully triaged (aka a bug that a QA guys can do nothing more
 about and that only can be moved forward by a developer) is either:
 
 1/ a regression, which has been bibisected
 2/ a non-regression, missing feature (enhancement)
 3/ a non-regression, bug introduced with new feature from the start

How would you call a bug inherited from OOo?

Regards

Robert
___
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/

Re: [Libreoffice-qa] minutes of ESC call ...

2014-12-24 Thread Bjoern Michaelsen
On Wed, Dec 24, 2014 at 12:13:57PM +0100, Robert Großkopf wrote:
 Hi Bjoern,
 
  
  True. In the end a fully triaged (aka a bug that a QA guys can do nothing 
  more
  about and that only can be moved forward by a developer) is either:
  
  1/ a regression, which has been bibisected
  2/ a non-regression, missing feature (enhancement)
  3/ a non-regression, bug introduced with new feature from the start
 
 How would you call a bug inherited from OOo?

4/ Inherited from OOo ;)

Forgot that one, but that is also trivially queryable, so doesnt change the
conclusion we only need a way to tag bugs in group 3.

Best,

Bjoern


___
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 87673] New: If OpenGL rendering is not available, LO fails to start

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87673

Bug ID: 87673
   Summary: If OpenGL rendering is not available, LO fails to
start
   Product: LibreOffice
   Version: 4.5.0.0.alpha0+ Master
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: major
  Priority: medium
 Component: framework
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: davian...@gmail.com

If OpenGL acceleration is enabled but hardware does not support it, LO fails to
start silently.
Either error message should appear, or LO should prompt user to disable it
automatically.

-- 
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 87556] Fatal error with use Fontwork

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87556

--- Comment #3 from kompilainenn 79045_79...@mail.ru ---
LO 4.5 alpha0+, Writer
id build: f11863d43d96c4bcad9ae43ceb25c05d9a94307d,
OS: Windows 7 x86 (32bit)

2b. Insert - Media - Fontwork Gallery - (click on Favorite 16) and (click 
on OK button)

click ANY Favorite and click OK

Error is reproduced

-- 
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 87674] New: Keyboard shortcuts in Impress

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87674

Bug ID: 87674
   Summary: Keyboard shortcuts in Impress
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: Other
OS: All
Status: NEW
  Severity: enhancement
  Priority: medium
 Component: ux-advise
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com
CC: libreoffice-ux-adv...@lists.freedesktop.org

Was checking through impress's keyboard shortcuts and noticed that start from
first slide was set to both F5, F9, and Ctrl+F2 and wondered why the
duplication.

Was also thinking that it would be useful to have shortcut keys to jump between
the various views.

And finally it would also be useful to have a shortcut key to add a new slide.
A user in the impress survey had suggested it be Ctrl+M (like MSO) rather than
that it being assigned to .uno:ResetAttributes.

-- 
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 87675] New: Edit button near drop-down lists in paragraph style properties for selection of next paragraph style

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87675

Bug ID: 87675
   Summary: Edit button near drop-down lists in paragraph style
properties for selection of next paragraph style
   Product: LibreOffice
   Version: unspecified
  Hardware: Other
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: heena.h.gu...@ericsson.com

Created attachment 111263
  -- https://bugs.freedesktop.org/attachment.cgi?id=111263action=edit
Missing Edit Button For Next Style in Edit Paragraph Style

Steps:-

1) Open the Document in writer
2) Right Click on the document - Edit Paragraph Style
3) Dialog appears
4) Click on Organizer button 
5) No Edit button for Next Style drop-down list to open selected style
properties for editing

Expected Behaviour:- Edit button for Next Style drop-down list so that user
can edit selected style

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


[Libreoffice-bugs] [Bug 87668] Original Size (.uno:OriginalSize) shown in context menu when image isnt resized

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87668

A (Andy) stgohi-lob...@yahoo.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||stgohi-lob...@yahoo.de
 Ever confirmed|0   |1

--- Comment #1 from A (Andy) stgohi-lob...@yahoo.de ---
Reproducible with LO 4.4.0.0.beta1 and 4.3.4.1 (Win 8.1).

I agree it should only be shown, if the size had been changed.

-- 
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 87675] Edit button near drop-down lists in paragraph style properties for selection of next paragraph style

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87675

--- Comment #1 from Heena Gupta heena.h.gu...@ericsson.com ---
Created attachment 111264
  -- https://bugs.freedesktop.org/attachment.cgi?id=111264action=edit
Miss

-- 
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 87675] Edit button near drop-down lists in paragraph style properties for selection of next paragraph style

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87675

Heena Gupta heena.h.gu...@ericsson.com changed:

   What|Removed |Added

 Attachment #111264|Miss|Missing Edit Button For
description||Next Style in Edit
   ||Paragraph Style

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


[Libreoffice-bugs] [Bug 87675] Edit button near drop-down lists in paragraph style properties for selection of next paragraph style

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87675

Heena Gupta heena.h.gu...@ericsson.com changed:

   What|Removed |Added

 Attachment #111263|text/plain  |image/png
  mime type||

-- 
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 87675] Edit button near drop-down lists in paragraph style properties for selection of next paragraph style

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87675

Heena Gupta heena.h.gu...@ericsson.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 87667] Original Size (.uno:OriginalSize) doesnt work correctly when an image is cropped

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87667

A (Andy) stgohi-lob...@yahoo.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||stgohi-lob...@yahoo.de
 Ever confirmed|0   |1

--- Comment #1 from A (Andy) stgohi-lob...@yahoo.de ---
Reproducible with LO 4.4.0.0.beta1 and 4.3.4.1 (Win 8.1).

This seems to be reasonable for me.  Otherwise, the image gets stretched.

-- 
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 87675] Edit button near drop-down lists in paragraph style properties for selection of next paragraph style

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87675

Heena Gupta heena.h.gu...@ericsson.com changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |heena.h.gu...@ericsson.com
   |desktop.org |

-- 
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 87670] New toolbars are too wide

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87670

Jay Philips philip...@hotmail.com changed:

   What|Removed |Added

 CC||philip...@hotmail.com

--- Comment #1 from Jay Philips philip...@hotmail.com ---
Yes the default large icons are too wide for a 1024px screen, which is why i
have submitted a bug to have smaller screen default to use small icons (bug
86445).

-- 
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 87652] Automatic grammar check does not work in the cell

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87652

A (Andy) stgohi-lob...@yahoo.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||stgohi-lob...@yahoo.de
 Ever confirmed|0   |1

--- Comment #2 from A (Andy) stgohi-lob...@yahoo.de ---
@Lera: I suppose you mean the spell check and not the grammar check.


Reproducible with LO 4.4.0.0.beta1 and 4.3.4.1 (Win 8.1).

My default language is German and I entered an English word house.  Then I
changed the language with right mouse click - FORMAT CELLS as described, but
the word is still red underlined.
The red underline only disappears if I select the cell and then go to the Input
Line and make a left mouse click into it followed by a right mouse click into
the Input Line and then click to any other cell.
- Bug: If I change the language then it should no longer be red underlined.

After the red underline is no longer visible I saved the file and reopened it. 
Result: The red underline is again visible, but the changed language is still
remembered by LO.
- Bug: The red underline should not appear again.

-- 
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 87652] Automatic grammar check does not work in the cell

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87652

A (Andy) stgohi-lob...@yahoo.de changed:

   What|Removed |Added

 OS|Linux (All) |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 84909] Meta: Enhancing Impress/Draw toolbars and context menu

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=84909

Jay Philips philip...@hotmail.com changed:

   What|Removed |Added

 Depends on||87676

-- 
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 87676] New: TOOLBAR: Hiding 'line and filling' and 'text formatting' toolbars by default

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87676

Bug ID: 87676
   Summary: TOOLBAR: Hiding 'line and filling' and 'text
formatting' toolbars by default
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: Other
OS: All
Status: NEW
  Severity: enhancement
  Priority: medium
 Component: ux-advise
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com
CC: libreoffice-ux-adv...@lists.freedesktop.org,
s.mehrbr...@gmail.com
Blocks: 84909

By disabling by default the 'line and filling' and 'text formatting' toolbars,
this increases the available space available to viewing the slide, which also
simplifies the UI. All features available in these two toolbars are present in
the properties tab of the sidebar as well as in the context menu, so there are
many advantages to having these hidden by default.

-- 
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 87673] If OpenGL rendering is not available, LO fails to start

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87673

Jay Philips philip...@hotmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||markus.mohrhard@googlemail.
   ||com, philip...@hotmail.com
 Ever confirmed|0   |1

--- Comment #1 from Jay Philips philip...@hotmail.com ---
@Urmas, could you let us know which hardware you tested this on and how does
one enable opengl acceleration.

CCing Markus as he's the OpenGL man. :D

-- 
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 87673] If OpenGL rendering is not available, LO fails to start

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87673

Urmas davian...@gmail.com changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #2 from Urmas davian...@gmail.com ---
Settings/View/Use OpenGL for all rendering

In my case that was VirtualBox VM.

-- 
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 87644] VIEWING: Data sort slow

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87644

--- Comment #3 from Julien Nabet serval2...@yahoo.fr ---
Please answer on bugtracker, so by using this link 
https://bugs.freedesktop.org/show_bug.cgi?id=87644# instead of replying me
directly with your emailer.

About update, LO notifies for new versions of the same branch.
For example, if you have 4.2.6, you'll be notified for 4.2.7, then 4.2.8 but
never for 4.3.0, 4.3.1, etc.

4.2.8 is a priori the last official 4.2 branch LO version. So even if there's a
bug with it, it won't be fixed on a 4.2.9
So if 4.2.8 is slow and prevents you from working normally, either I would
suggest you to give a try to 4.3.5 or to go back to 4.2.6 (I'd prefer first
option unless you notice important regressions)

-- 
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 83525] UI: Undocked sidebar doesn't resize properly

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83525

--- Comment #6 from nick.d...@itdev.co.uk ---
It's a clean install of ubuntu trusty 14.04.

I can confirm, the problem doesn't seem to be there in 4.4.0.1 as downloaded
directly from libreoffice.org - everything resizes 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-bugs] [Bug 87607] LibreOffice Calc - NOT HONORING: Disable confirmation when overwriting data

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87607

--- Comment #5 from sophie gautier.sop...@gmail.com ---
*** Bug 87629 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 87629] CONFIGURATION: Unchecking Show overwrite warning when pasting data setting is not honored when Enter is used to paste

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87629

sophie gautier.sop...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #4 from sophie gautier.sop...@gmail.com ---
@raal, yes, this is the same as bug 87607. 
@Deac: for the dialog to not popup, either you double click on the cell you
want to paste in to edit it, then the dialog won't show up, or you past the
content in the formula bar. 
Closing as duplicate of 87607. Sophie

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

-- 
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 87674] Keyboard shortcuts in Impress

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87674

Cor Nouws c...@nouenoff.nl changed:

   What|Removed |Added

 CC||c...@nouenoff.nl

--- Comment #1 from Cor Nouws c...@nouenoff.nl ---
(In reply to Jay Philips from comment #0)
 Was checking through impress's keyboard shortcuts and noticed that start
 from first slide was set to both F5, F9, and Ctrl+F2 and wondered why the
 duplication.

Hmm, interesting. 
No idea where F9 and Ctrl+F2 come from, so I wouldn't touch them

 Was also thinking that it would be useful to have shortcut keys to jump
 between the various views.

If possible yes. The menu View  .. works with shortcuts too of course.

 And finally it would also be useful to have a shortcut key to add a new
 slide. A user in the impress survey had suggested it be Ctrl+M (like MSO)
 rather than that it being assigned to .uno:ResetAttributes.

Ctrl+M is general among all modules. So I would suggest not to use that.

Cheers
Cor

-- 
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 87672] Moving Impress view tabs to slide pane

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87672

Cor Nouws c...@nouenoff.nl changed:

   What|Removed |Added

 CC||c...@nouenoff.nl

--- Comment #1 from Cor Nouws c...@nouenoff.nl ---
I've no objection in moving- though I don't have the
vertical-lack-of-space-problem.
I would be against hiding on the items. Consequent visibility of related
choices looks a good thing to 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 87668] Original Size (.uno:OriginalSize) shown in context menu when image isnt resized

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87668

Cor Nouws c...@nouenoff.nl changed:

   What|Removed |Added

 CC||c...@nouenoff.nl

--- Comment #2 from Cor Nouws c...@nouenoff.nl ---
or simply grayed 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 87669] CONTEXT MENU: Duplicate Master Slide

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87669

Cor Nouws c...@nouenoff.nl changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||c...@nouenoff.nl
 Resolution|--- |DUPLICATE

--- Comment #1 from Cor Nouws c...@nouenoff.nl ---
Hi Jay,

Already here: 85966

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

-- 
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 85966] No ability to copy / duplicate master slides

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=85966

Cor Nouws c...@nouenoff.nl changed:

   What|Removed |Added

 CC||philip...@hotmail.com

--- Comment #3 from Cor Nouws c...@nouenoff.nl ---
*** Bug 87669 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 86349] Meta: Context menu bugs and enhancements

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=86349
Bug 86349 depends on bug 87669, which changed state.

Bug 87669 Summary: CONTEXT MENU: Duplicate Master Slide
https://bugs.freedesktop.org/show_bug.cgi?id=87669

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |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 87653] DIALOG: New object formatting dialog

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87653

Cor Nouws c...@nouenoff.nl changed:

   What|Removed |Added

 CC||c...@nouenoff.nl

--- Comment #1 from Cor Nouws c...@nouenoff.nl ---
Did you take a look at the Styles and Formatting window, when an object is
selected ;) ?

IMO this is simply 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 76282] EDITING: [RFE] Ability to disable character-substitution in paragraph-styles

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=76282

--- Comment #5 from David Juran da...@juran.se ---
If I could have a wish, I would not only like to disable it
paragraph-by-paragraph, but also in a paragraph style.

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


[Libreoffice-bugs] [Bug 87676] TOOLBAR: Hiding 'line and filling' and 'text formatting' toolbars by default

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87676

Cor Nouws c...@nouenoff.nl changed:

   What|Removed |Added

 CC||c...@nouenoff.nl

--- Comment #1 from Cor Nouws c...@nouenoff.nl ---
The formatting tool bars are always visible by default.
Depending on the state, they sort of change appearance. See the discussion with
Object.

I advise against changing 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 87678] New: Formula calculates data from the row below that programmed

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87678

Bug ID: 87678
   Summary: Formula calculates data from the row below that
programmed
   Product: LibreOffice
   Version: 4.3.5.1 rc
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: major
  Priority: medium
 Component: Spreadsheet
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jacek.skrzynecki@gmail.com

Created attachment 111270
  -- https://bugs.freedesktop.org/attachment.cgi?id=111270action=edit
Register of work time for team members (one person on one sheet).

In attached file on sheet Marta Borowiec in column E shuld be calculated time
of work (formula simply subtracts col.D-C in the same row).
In row 5 I manually corected formulas by retyping THE SAME FORMULA : E5=D5-C5 
But in row 6 till 50 cells are not edited. Results are calculated from rows
below (offset?). Using F9 or recalculate function from menu or saving and
closing file - doesn't affect the result.

-- 
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 87646] Image Borders in Documents Cannot be Deleted

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87646

--- Comment #3 from Julien Nabet serval2...@yahoo.fr ---
On pc Debian x86-64 with LO Debian package 4.3.3, here what I did:
- created a brand new odt file with 1 page containing 3 parags + 1 jpg file
- added borders on the page
- added borders on the image
- saved and closed the file

Then I reopened the file, removed the borders of the image, saved and reopened,
it was ok.

Then I put back the borders on image with 4.3.3, reopened with 4.3 sources
updated yesterday (future 4.3.6), removed the borders, saved, reopened, it was
still ok.

Would it be possible you attach the file (by using this link
https://bugs.freedesktop.org/attachment.cgi?bugid=87646action=enter) so we can
give it a try? (have in mind that any attachment is automatically made public,
so remove any confidential/private part).

-- 
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 87668] Original Size (.uno:OriginalSize) shown in context menu when image isnt resized

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87668

--- Comment #3 from Jay Philips philip...@hotmail.com ---
(In reply to Cor Nouws from comment #2)
 or simply grayed out..

Presently the context menu doesnt gray out entries, it only removes/hides them.

-- 
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 87673] If OpenGL rendering is not available, LO fails to start

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87673

--- Comment #3 from Jay Philips philip...@hotmail.com ---
I cant see any setting called 'Use OpenGL for all rendering' in master. Do you
have a screenshot?

-- 
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 87663] CRASH when attempting to add ToC to document

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87663

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

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #3 from Julien Nabet serval2...@yahoo.fr ---
On pc Debian x86-64 with 4.4. sources updated yesterday + brand new file, I
don't reproduce this.
Robinson: Could you attach the file so I could give it a try?

-- 
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 87536] FILEOPEN: DOCX - image color/graphics modes not correctly imported

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87536

Jay Philips philip...@hotmail.com changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #2 from Jay Philips philip...@hotmail.com ---
(In reply to Robinson Tryon (qubit) from comment #1)
 Columns aren't labeled, but I'll just pretend.

Check the statusbar, you'll see it labeled there. ;D

 
  3) Notice none have set values in the graphics mode drop down list in the
  image toolbar
 
 Do you mean the sidebar? And what values should be set?

No i mean image toolbar. The toolbar which pops up at the bottom when you click
on an image (View  Toolbars  Image). In that toolbar you'll find a drop down
list box titled with the tooltip 'Graphics mode'. If you prefer to do it in the
sidebar, then in the Graphic section of the properties tab, you'll see the same
drop down list box under the label 'Color mode'. The image in B2 should have
the grayscale color mode set, the image in B3 should have watermark set and the
image in B4 should have black/white set.

 The label (in A3) says 'Washout'. Are you sure it's not supposed to look
 like this?

It is supposed to look like this, but the filter isnt supposed to overwrite the
original image, which is what LO is doing. It should be setting the
graphics/color mode to 'Watermark'. If you open up the docx file (its a zip
file), you will find 1 image in the /word/media/ folder which is the untouched
original image.

 Please attach a screenshot of the graphics settings in Word for point #2 and
 a screenshot of the graphic for #3.

Will attach a screenshot from MS Word for their color mode drop down.

-- 
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 87536] FILEOPEN: DOCX - image color/graphics modes not correctly imported

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87536

--- Comment #3 from Jay Philips philip...@hotmail.com ---
Created attachment 111275
  -- https://bugs.freedesktop.org/attachment.cgi?id=111275action=edit
MS Word 2007's recolor drop down button

-- 
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 87673] If OpenGL rendering is not available, LO fails to start

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87673

--- Comment #4 from Urmas davian...@gmail.com ---
Created attachment 111276
  -- https://bugs.freedesktop.org/attachment.cgi?id=111276action=edit
Screenshot

-- 
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 86305] EDITING: Entering data into a cell changes array formula that references that cell

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=86305

Matthew Francis fdb...@neosheffield.co.uk changed:

   What|Removed |Added

 CC||fdb...@neosheffield.co.uk

--- Comment #2 from Matthew Francis fdb...@neosheffield.co.uk ---
(Commented as part of a sweep of bugs that are bibisected but not source
bisected)

Building the source in the bibisect range unfortunately does not appear to give
a working binary.

Looking only at changes in the range which affect sc/ , it seems likely that
one of these three is the cause:

commit 3cea6bb57757ce085f01f0b86b000cfc0592dca7
Author: Kohei Yoshida kohei.yosh...@collabora.com
Date:   Sat Mar 8 17:40:32 2014 -0500

More consistent number format inheritence policy.

The new policy is to always inherit number format of a formula cell
from its reference unless the cell already has an explicit number format
set.

Also to avoid recalculating formula cells on load just because they have
the 'General' number format.  This leads to excessive re-calculation of
formula cells upon load even when the cells already have results cached.

Change-Id: I28128d3fef296e09e62bea72e8aab75de9876239

commit 5d2e7cbf6433ecced0ecac46b3abdaf97b82880b
Author: Kohei Yoshida kohei.yosh...@collabora.com
Date:   Sat Mar 8 16:27:32 2014 -0500

This test file had wrong cached formula result stored.

It didn't get flagged before because we would always recalc all formula
cells
with 'General' number format on load...

Change-Id: I36e71534b65f3f088415cd518af04696892f76dd

commit 1c27b0a4fafc525ed704f4348d5f214b5ef2a764
Author: Kohei Yoshida kohei.yosh...@collabora.com
Date:   Sat Mar 8 13:23:12 2014 -0500

Reduce indentation by early bail-out.

Change-Id: Iaac628d2629bf1ff96fd1709e358ae9eed3fca02

-- 
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 87673] If OpenGL rendering is not available, LO fails to start

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87673

--- Comment #5 from Jay Philips philip...@hotmail.com ---
Thanks for the screenshot. Seems my current build from 12-12 doesnt have it in
it but i see it in the latest build. :D

I think it would be good for you to send in a backtrace so someone can see why
it silently fails. I've had similar opengl crashes in the past, like in bug
80448.

-- 
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 87674] Keyboard shortcuts in Impress

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87674

--- Comment #2 from Jay Philips philip...@hotmail.com ---
(In reply to Cor Nouws from comment #1)
  Was also thinking that it would be useful to have shortcut keys to jump
  between the various views.
 
 If possible yes. The menu View  .. works with shortcuts too of course.

Any suggestions to what you'd like to use, as i'm not a heavy keyboard user.

  And finally it would also be useful to have a shortcut key to add a new
  slide. A user in the impress survey had suggested it be Ctrl+M (like MSO)
  rather than that it being assigned to .uno:ResetAttributes.
 
 Ctrl+M is general among all modules. So I would suggest not to use that.

Well it seems Draw/Impress doesnt have a command .uno:ResetAttributes, so this
has been broken since 3.3.0. It should have been set to .uno:SetDefault like is
available in the menu bar and context menu, so as it hasnt worked in the
history of LO, maybe its worth using this for new slide. :D

-- 
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 70806] EDITING: DCOUNT and DCOUNTA function parameter.

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=70806

--- Comment #8 from Winfried Donkers winfrieddonk...@libreoffice.org ---
(In reply to Robinson Tryon (qubit) from comment #6)

My conclusion after a quick look in the code base is that the code explicitly
allows the absence of the field argument, as long as the criteria argument
produces valid results (DCOUNT as well as DCOUNTA).

The ODF1.2 standard does not mark any argument optional.

One could wonder if this is a violation of the standard or functionality that
is more than required by the standard. We have more functions in Calc that
offer more functionality than is required by the standard.

The code has not been changed since the start of LibreOffice, the last change
to the DCOUNT/DCOUNTA code is from March 2010.

I would suggest to change the (help) documentation to reflect its actual
functionality, which IMHO is more user friendly than strict coherence to the
standard. But then, I'm only a developer ;-)

-- 
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 87672] Moving Impress view tabs to slide pane

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87672

--- Comment #2 from Jay Philips philip...@hotmail.com ---
(In reply to Cor Nouws from comment #1)
 I've no objection in moving- though I don't have the
 vertical-lack-of-space-problem.

With its removal, it would likely increase my slide view from 75% to 78% on my
1440x900 resolution.

 I would be against hiding on the items. Consequent visibility of related
 choices looks a good thing to me.

Well if they can all fit in the space then it would be most ideal.

-- 
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 87653] DIALOG: New object formatting dialog

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87653

--- Comment #2 from Jay Philips philip...@hotmail.com ---
Yes the styles dialog would be the suitable dialog to duplicate, with the
removal of some of the unnecessary tabs like organizer, font, font effects,
indent  spacing, alignment, tabs, etc.

Many users do not use styles, which is why context menu entries for Line...,
Area..., Text...

-- 
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 87678] Formula calculates data from the row below that programmed

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87678

GerardF gerard.farg...@orange.fr changed:

   What|Removed |Added

 Attachment #111270|text/plain  |application/vnd.oasis.opend
  mime type||ocument.spreadsheet
 CC||gerard.farg...@orange.fr

-- 
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 87679] New: Blinking elements of Formula Editor

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87679

Bug ID: 87679
   Summary: Blinking elements of Formula Editor
   Product: LibreOffice
   Version: 4.3.5.2 release
  Hardware: x86 (IA32)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Formula Editor
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: katjareznik...@gmail.com

When you click MATH Formula Doc and see a new document and area with tools.
The area where displayed variants of formulas, the windows with variants is
really so blinking. And when you change a kind of formulas, the area is still
blinking.

-- 
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 87680] No accessible caret-moved events in Writer tables

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87680

--- Comment #1 from Joanmarie Diggs jdi...@igalia.com ---
Created attachment 111290
  -- https://bugs.freedesktop.org/attachment.cgi?id=111290action=edit
accessible-event listener

-- 
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 87680] New: No accessible caret-moved events in Writer tables

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87680

Bug ID: 87680
   Summary: No accessible caret-moved events in Writer tables
   Product: LibreOffice
   Version: unspecified
  Hardware: Other
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jdi...@igalia.com

Created attachment 111289
  -- https://bugs.freedesktop.org/attachment.cgi?id=111289action=edit
test case

Steps to reproduce:
1. Open the attached document
2. Launch the attached accessible-event listener in a terminal
3. Arrow amongst the characters at the top of the document
4. Arrow amongst the characters in the table

Expected results: Accessible caret-moved events would be seen each time the
caret moves.

Actual results: Accessible caret-moved events are seen when the caret moves
outside the table; but no caret-moved events are seen when the caret moves
inside the table.

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


[Libreoffice-bugs] [Bug 87680] No accessible caret-moved events in Writer tables

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87680

Joanmarie Diggs jdi...@igalia.com changed:

   What|Removed |Added

 Blocks||36549

-- 
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 36549] ACCESSIBILITY: Tracking bug for issues affecting a11y ATK and GNOME Orca screen reader support

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=36549

Joanmarie Diggs jdi...@igalia.com changed:

   What|Removed |Added

 Depends on||87680

-- 
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 87680] No accessible caret-moved events in Writer tables

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87680

Jean-Philippe MENGUAL te...@accelibreinfo.eu changed:

   What|Removed |Added

Version|unspecified |4.3.3.2 release

--- Comment #2 from Jean-Philippe MENGUAL te...@accelibreinfo.eu ---
The bug is still here in 4.3.5, e.g. the latest Evolution available on the TDF
website.

Regards,

-- 
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 87574] Outline numbering None is not retained when save as docx

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87574

sophie gautier.sop...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||gautier.sop...@gmail.com
 Ever confirmed|0   |1

--- Comment #3 from sophie gautier.sop...@gmail.com ---
Hi Kevin, confirmed with Version: 4.4.0.1
Build ID: 1ba9640ddd424f1f535c75bf2b86703770b8cf6f
Locale: fr_FR Ubuntu 14.10 - Set as new - Sophie

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


[Libreoffice-bugs] [Bug 87663] CRASH when attempting to add ToC to document

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87663

sophie gautier.sop...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||gautier.sop...@gmail.com
 Ever confirmed|0   |1

--- Comment #4 from sophie gautier.sop...@gmail.com ---
Hi, confirmed using Version: 4.4.0.1
Build ID: 1ba9640ddd424f1f535c75bf2b86703770b8cf6f
Locale: fr_FR - Ubuntu 14.10
Julien: to reproduce, just write : New title, set it to Heading one, enter
blabla below, then Insert  Index and tables  Index on a new line == crash. I
can reproduce it each time I tried.
Set as New - Sophie

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


[Libreoffice-bugs] [Bug 87663] CRASH when attempting to add ToC to document

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87663

--- Comment #5 from Julien Nabet serval2...@yahoo.fr ---
Sophie: I failed to reproduce this :-( Perhaps is it because I use a build from
4.4 sources updated yesterday?

-- 
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 87663] CRASH when attempting to add ToC to document

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87663

--- Comment #6 from sophie gautier.sop...@gmail.com ---
Julien, I just tested with an old master I had at hand Version: 4.5.0.0.alpha0+
Build ID: 317b5bc5f801135b027e02d5acfc407cc2d05689
TinderBox: Linux-rpm_deb-x86_64@46-TDF, Branch:master, Time:
2014-12-01_00:15:34
Locale: fr_FR 
I was not able to reproduce with this one, the TOC is created with no problem.
I'll try with master 4.4. Sophie

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


[Libreoffice-bugs] [Bug 87663] CRASH when attempting to add ToC to document

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87663

--- Comment #7 from sophie gautier.sop...@gmail.com ---
works great with this one Version: 4.4.0.1.0+
Build ID: a7f76a197900e7ece5d09fed2bf7920a42425e9c
TinderBox: Linux-rpm_deb-x86_64@46-TDF, Branch:libreoffice-4-4, Time:
2014-12-23_15:24:54
Locale: fr_FR - Sophie

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


[Libreoffice-bugs] [Bug 82618] Calc crashes when Tools Solver is clicked on

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82618

--- Comment #12 from invisibl...@hotmail.com ---
I have since then upgraded LibreOffice and the problem with the NLP Solver in
Calc no longer exists.

Thank you for your assistance.

Keep up the great 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 87663] CRASH when attempting to add ToC to document

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87663

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

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME
 Whiteboard||(target:4.4.0.1)

--- Comment #8 from Julien Nabet serval2...@yahoo.fr ---
Thank you Sophie for your feedback, let's put this to WFM.

-- 
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 32848] LibreOffice for OS X should be available in the Mac App Store

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=32848

Cor Nouws c...@nouenoff.nl changed:

   What|Removed |Added

 CC||c...@nouenoff.nl

--- Comment #13 from Cor Nouws c...@nouenoff.nl ---
(In reply to Nicholas from comment #12)
 Has the dual licensing finished? I don't really know how it happens.
 Anyway, I believe having LO in the Apple Mac Store would really help get LO
 out to users :).

Yes, licensing shouldn't be a problem any more.
It's mostly climbing over the Apple-walls .. I'm pretty sure it's on the todo
of some developers..

-- 
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 69556] Download site blocked because SPAM URL's by my company's Microsoft Forefront TMG

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69556

Cor Nouws c...@nouenoff.nl changed:

   What|Removed |Added

 CC||c...@nouenoff.nl

--- Comment #10 from Cor Nouws c...@nouenoff.nl ---
Hi Leon,

No trouble in finding downloads in general?
Cheers,
Cor

-- 
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 87646] Image Borders in Documents Cannot be Deleted

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87646

--- Comment #4 from Michael Jonas michael...@gmail.com ---
Created attachment 111291
  -- https://bugs.freedesktop.org/attachment.cgi?id=111291action=edit
Write Document File - Borders Issues

I've attached the file...Please confirm that it's been received.

-- 
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 87653] DIALOG: New object formatting dialog

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87653

--- Comment #3 from Cor Nouws c...@nouenoff.nl ---
(In reply to Jay Philips from comment #2)

 Many users do not use styles, which is why context menu entries for Line...,
 Area..., Text...

So we already offer direct formatting via toolbar, context menu, the side bar
and now you want to make it even more confusing with an extra dialog, similar
to that of the applied style bit with some tabs removed.. 
To facilitate dump use even more..

IMO it's time that you come on your bare knees to my desk to ask for
forgiveness :)

-- 
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 87679] Blinking elements of Formula Editor

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87679

Ekaterina katjareznik...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 87569] Importing Table

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87569

Robert Markowitz robt.markow...@gmail.com changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 CC||robt.markow...@gmail.com
   Assignee|libreoffice-b...@lists.free |robt.markow...@gmail.com
   |desktop.org |
 Ever confirmed|1   |0

--- Comment #2 from Robert Markowitz robt.markow...@gmail.com ---
Created attachment 111293
  -- https://bugs.freedesktop.org/attachment.cgi?id=111293action=edit
Business Cards in a 2 column table

The attached is a two column table of business cards. When I try to open it in
Libre Office only the left column contains data. The right column is blank. It
should be the same as the left column giving me 10 business cards in total.

-- 
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 87510] FILEOPEN: Line spacing wrong when opening particular legacy odt document

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87510

tmacalp tmac...@gmail.com changed:

   What|Removed |Added

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

--- Comment #10 from tmacalp tmac...@gmail.com ---
I tested both the example document and our original document with nightly
versions of both 440 and master using 64bit Fedora 20.  Everything appears to
be back to normal, so I'll mark this as resolved-fixed.

Thanks to everyone involved for speedily tracking and fixing this bug!  I'm
quite impressed.

-- 
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 87664] START CENTER: Addition of html document to the create list

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87664

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

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu

--- Comment #1 from V Stuart Foote vstuart.fo...@utsa.edu ---
@Jay, huh?

There is no new document list other than the vertically arranged buttons.

But if adding to that is what you meant, then perhaps a split button (like now
for Templates) for the Writer button?  

And possibly also do entries for some of the other items on File - New menu?

Stuart

-- 
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 82041] FORMATTING: Request: Undo the change of default template for heading level 3 and 4

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82041

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

   What|Removed |Added

 Whiteboard|BSA |BSA target:4.5.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 82041] FORMATTING: Request: Undo the change of default template for heading level 3 and 4

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82041

--- Comment #14 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
V Stuart Foote committed a patch related to this issue.
It has been pushed to master:

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

fdo#82041 restore heading 3 and 4 color to automatic

It will be available in 4.5.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 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 87300] EDITING: Calc crashes after repeated cut-paste operation

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87300

Timur gti...@gmail.com changed:

   What|Removed |Added

 CC||gti...@gmail.com

--- Comment #8 from Timur gti...@gmail.com ---
Massimo, when you say crash do you mean stopped and disappeared from the
screen and from the list of running programs or you mean frozen so that you
see it but you cannot use it and have to close it yourself with Windows task
manager?
Because, if it's frozen, there is already Bug 46406 and Bug 78429, so this may
be duplicate.
I myself experience freezes-hangs with LO, now in versin 4.3.5.2, both in
Writer and Calc, but they are hard to reproduce.

-- 
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 83525] UI: Undocked sidebar doesn't resize properly

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83525

Robinson Tryon (qubit) qu...@runcibility.com changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #7 from Robinson Tryon (qubit) qu...@runcibility.com ---
(In reply to Nick Dyer from comment #6)
 It's a clean install of ubuntu trusty 14.04.
 
 I can confirm, the problem doesn't seem to be there in 4.4.0.1 as downloaded
 directly from libreoffice.org - everything resizes properly.

Sounds like two possibilities here:
1) The bug is fixed in 4.4
2) The bug is Ubuntu-release-specific

Either way, this appears to be fixed for TDF builds, so Status - RESOLVED
WORKSFORME.

If the problem isn't fixed when Ubuntu releases 4.4, I'd suggest that you file
a new bug against Ubuntu (on Launchpad).

-- 
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 65138] [META] Sidebar feature related issues

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=65138
Bug 65138 depends on bug 83525, which changed state.

Bug 83525 Summary: UI: Undocked sidebar doesn't resize properly
https://bugs.freedesktop.org/show_bug.cgi?id=83525

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |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 87536] FILEOPEN: DOCX - image color/graphics modes not correctly imported

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87536

Robinson Tryon (qubit) qu...@runcibility.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #4 from Robinson Tryon (qubit) qu...@runcibility.com ---
TESTING on Ubuntu 14.04 w/the same 4.5.0.0.alpha0+ build as I used in my
earlier comment.

(In reply to Jay Philips from comment #2)
 ... If you prefer to
 do it in the sidebar, then in the Graphic section of the properties tab,
 you'll see the same drop down list box under the label 'Color mode'. The
 image in B2 should have the grayscale color mode set, the image in B3 should
 have watermark set and the image in B4 should have black/white set.

For each image, the 'Graphics mode' dropdown is set to 'Default'.

  The label (in A3) says 'Washout'. Are you sure it's not supposed to look
  like this?
 
 It is supposed to look like this, but the filter isnt supposed to overwrite
 the original image, which is what LO is doing. It should be setting the
 graphics/color mode to 'Watermark'.

Fair enough. When I change the 'Graphics mode' to 'Watermark' for this image,
it turns completely white. That seems sub-optimal :-)

  Please attach a screenshot of the graphics settings in Word for point #2 and
  a screenshot of the graphic for #3.
 
 Will attach a screenshot from MS Word for their color mode drop down.

Comparing attachment 111275 to the rendering of the document in LO, there are a
number of discrepancies.

Status - NEW

-- 
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 87536] FILEOPEN: DOCX - image color/graphics modes not correctly imported

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87536

Robinson Tryon (qubit) qu...@runcibility.com changed:

   What|Removed |Added

 Whiteboard||filter:docx

-- 
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 87678] Formula calculates data from the row below that programmed

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87678

m.a.riosv mari...@miguelangel.mobi changed:

   What|Removed |Added

 CC||mari...@miguelangel.mobi

--- Comment #1 from m.a.riosv mari...@miguelangel.mobi ---
Hi @JackS, thanks for reporting.

I can reproduce with your version even with:
Version: 4.5.0.0.alpha0+
Build ID: aeeff83595a176805d74ad4e35d946eb6a8e1b25
TinderBox: Win-x86@42, Branch:master, Time: 2014-12-22_23:20:12

Fortunately seems that a hard recalc [Ctrl+Shif+F9] does right calculations.

You can set up in Menu/Options/LibreOffice calc/Formula/Recalculation on file
load - ODS spreadsheets - Always.

-- 
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 83378] VIEWING: Fullscreen: Black screen when closing (not quit) Writer file while in full screen on Mac OS X 10.9.4

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83378

Fedelosa feder...@marindia.net changed:

   What|Removed |Added

Version|4.3.1.2 release |4.3.5.2 release

--- Comment #3 from Fedelosa feder...@marindia.net ---
Same thing with 

Versión: 4.3.5.2
in a MacBook Air 11 inch with OSX 10.10.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 70806] EDITING: DCOUNT and DCOUNTA function parameter.

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=70806

Robinson Tryon (qubit) qu...@runcibility.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #9 from Robinson Tryon (qubit) qu...@runcibility.com ---
(In reply to Winfried Donkers from comment #8)
 (In reply to Robinson Tryon (qubit) from comment #6)
 
 My conclusion after a quick look in the code base is that the code
 explicitly allows the absence of the field argument, as long as the criteria
 argument produces valid results (DCOUNT as well as DCOUNTA).
 
 The ODF1.2 standard does not mark any argument optional.
 
 One could wonder if this is a violation of the standard or functionality
 that is more than required by the standard. We have more functions in Calc
 that offer more functionality than is required by the standard.

So strictly speaking, it sounds like the code disagrees with the standard.

 The code has not been changed since the start of LibreOffice, the last
 change to the DCOUNT/DCOUNTA code is from March 2010.
 
 I would suggest to change the (help) documentation to reflect its actual
 functionality, which IMHO is more user friendly than strict coherence to the
 standard. But then, I'm only a developer ;-)

Fair enough. That solution seems reasonable to me, especially if we were to
make a note of our deviation from the standard the way that we do with
extensions to ODF:
https://wiki.documentfoundation.org/Development/ODF_Implementer_Notes/List_of_LibreOffice_ODF_Extensions

In any case, it seems clear that there's some real work to be done here
(Documentation, development, or etc..), so Status - NEW.

-- 
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 85947] copy the whole sheet - paste - undo hangs Calc

2014-12-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=85947

Matthew Francis fdb...@neosheffield.co.uk changed:

   What|Removed |Added

   Keywords||bisected

--- Comment #6 from Matthew Francis fdb...@neosheffield.co.uk ---
(Commented during a sweep of bugs that are bibisected but not source bisected)

Building the source in the range of the bibisect didn't yield a working binary,
but based on the commits in the range, it seems very likely that this one is
related:


commit f5d8029a456c2c708cbc2b67f2d7875540dff1ab
Author: Kohei Yoshida kohei.yosh...@collabora.com
Date:   Wed Jan 29 14:00:47 2014 -0500

fdo#74014: Broadcast changes during undo and redo after paste.

Change-Id: I271bbba5e5eb70e48274a4a062d125456af8ff6c

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