[Libreoffice-commits] core.git: sal/osl

2013-07-06 Thread Tor Lillqvist
 sal/osl/unx/time.c |   48 +++-
 1 file changed, 31 insertions(+), 17 deletions(-)

New commits:
commit c154551d638cc016b5c3d615a32450dc38902098
Author: Tor Lillqvist t...@iki.fi
Date:   Sat Jul 6 10:32:45 2013 +0300

Don't use mach_absolute_time(), it gives time since boot

Which definitely is not what we want here. Use clock_get_time() on a
CALENDAR_CLOCK instead, that gives time since the Unix epoch.

So our osl_getSystemTime() had been completely broken on OS X since
May 19 (d8d55787b81cdc955b73c8befa4ab608f46e32aa) and no unit test had
noticed... Fairly coincidentally, an assert() introduced yesterday in
4d220882b46d5f8edd4d09e5f66722cd296a092e caught it.

Change-Id: Iad76a7aadc39159fdc80c99087bb527d6aa49c66

diff --git a/sal/osl/unx/time.c b/sal/osl/unx/time.c
index 38e8f36..1afaaf6 100644
--- a/sal/osl/unx/time.c
+++ b/sal/osl/unx/time.c
@@ -26,8 +26,9 @@
 #include assert.h
 #include unistd.h
 
-#if defined(MACOSX) || defined(IOS)
-#include mach/mach_time.h
+#ifdef __MACH__
+#include mach/clock.h
+#include mach/mach.h
 #endif
 
 /* FIXME: detection should be done in configure script */
@@ -39,9 +40,8 @@
 #define HAS_ALTZONE 1
 #endif
 
-#if defined(MACOSX) || defined(IOS)
-typedef sal_uInt64 osl_time_t;
-static double adjust_time_factor;
+#ifdef __MACH__
+typedef mach_timespec_t osl_time_t;
 #else
 #if defined(_POSIX_TIMERS)
 #define USE_CLOCK_GETTIME
@@ -59,10 +59,16 @@ static osl_time_t startTime;
 
 sal_Bool SAL_CALL osl_getSystemTime(TimeValue* tv)
 {
-#if defined(MACOSX) || defined(IOS)
-double diff = (double)(mach_absolute_time() - startTime) * 
adjust_time_factor;
-tv-Seconds = (sal_uInt32)diff;
-tv-Nanosec = (sal_uInt32)((diff - tv-Seconds) * 1e9);
+#ifdef __MACH__
+clock_serv_t cclock;
+mach_timespec_t mts;
+
+host_get_clock_service(mach_host_self(), CALENDAR_CLOCK, cclock);
+clock_get_time(cclock, mts);
+mach_port_deallocate(mach_task_self(), cclock);
+
+tv-Seconds = mts.tv_sec;
+tv-Nanosec = mts.tv_nsec;
 #else
 int res;
 osl_time_t tp;
@@ -274,11 +280,12 @@ sal_Bool SAL_CALL osl_getSystemTimeFromLocalTime( const 
TimeValue* pLocalTimeVal
 
 void sal_initGlobalTimer()
 {
-#if defined(MACOSX) || defined(IOS)
-  mach_timebase_info_data_t timebase;
-  mach_timebase_info(timebase);
-  adjust_time_factor = 1e-9 * (double)timebase.numer / 
(double)(timebase.denom);
-  startTime = mach_absolute_time();
+#ifdef __MACH__
+  clock_serv_t cclock;
+
+  host_get_clock_service(mach_host_self(), CALENDAR_CLOCK, cclock);
+  clock_get_time(cclock, startTime);
+  mach_port_deallocate(mach_task_self(), cclock);
 #else /* ! (MACOSX || IOS) */
   int res;
 #if defined(USE_CLOCK_GETTIME)
@@ -295,9 +302,16 @@ sal_uInt32 SAL_CALL osl_getGlobalTimer()
 {
 sal_uInt32 nSeconds;
 
-#if defined(MACOSX) || defined(IOS)
-double diff = (double)(mach_absolute_time() - startTime) * 
adjust_time_factor * 1000;
-nSeconds = (sal_uInt32)diff;
+#ifdef __MACH__
+clock_serv_t cclock;
+mach_timespec_t currentTime;
+
+host_get_clock_service(mach_host_self(), CALENDAR_CLOCK, cclock);
+clock_get_time(cclock, currentTime);
+mach_port_deallocate(mach_task_self(), cclock);
+
+nSeconds = ( currentTime.tv_sec - startTime.tv_sec );
+nSeconds = ( nSeconds * 1000 ) + (long) (( currentTime.tv_nsec - 
startTime.tv_nsec) / 100 );
 #else
 osl_time_t currentTime;
 int res;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'aoo/trunk' - boost/boost-os2.patch boost/makefile.mk

2013-07-06 Thread Yuri Dario
 boost/boost-os2.patch |   22 ++
 boost/makefile.mk |3 +++
 2 files changed, 25 insertions(+)

New commits:
commit 74b5b7cd1a42e08a1195c3e225d2a224a7102d3a
Author: Yuri Dario yda...@apache.org
Date:   Sat Jul 6 07:45:59 2013 +

i122692 i118923 - OS/2 port: boost build fixes.

diff --git a/boost/boost-os2.patch b/boost/boost-os2.patch
new file mode 100644
index 000..ccba8b0
--- /dev/null
+++ b/boost/boost-os2.patch
@@ -0,0 +1,22 @@
+--- misc/boost_1_48_0/boost/tr1/detail/config.hpp  2010-06-12 
11:30:02.0 +0200
 misc/build/boost_1_48_0/boost/tr1/detail/config.hpp2013-07-04 
12:49:12.0 +0200
+@@ -9,6 +9,7 @@
+ #include cstddef
+ 
+ #if (defined(__GNUC__)  !(defined(linux) || defined(__linux) || 
defined(__linux__))) \
++!defined(__OS2__) \
+|| (!defined(_AIX)  defined(__IBMCPP__)   (__IBMCPP__ = 800)) 
+// Disable use of #include_next on Linux as typically we are installed in 
a 
+// directory that is searched *after* the std lib include path.
+--- misc/boost_1_48_0/boost/tr1/detail/config_all.hpp  2011-07-25 
11:28:58.0 +0200
 misc/build/boost_1_48_0/boost/tr1/detail/config_all.hpp2013-07-04 
12:50:44.0 +0200
+@@ -107,7 +107,7 @@
+ #endif
+ 
+ #  if !defined(BOOST_TR1_DISABLE_INCLUDE_NEXT)  !defined(__ICC) \
+- (defined(linux) || defined(__linux) || defined(__linux__) || 
defined(__GNU__) || defined(__GLIBC__))
++ (defined(__OS2__) || defined(linux) || defined(__linux) || 
defined(__linux__) || defined(__GNU__) || defined(__GLIBC__))
+  // Disable use of #include_next on Linux as typically we are 
installed in a directory that is searched
+  // *after* the std lib include path:
+ #define BOOST_TR1_DISABLE_INCLUDE_NEXT
+Binary files misc/boost_1_48_0/libs/math/quaternion/TQE_EA.pdf and 
misc/build/boost_1_48_0/libs/math/quaternion/TQE_EA.pdf differ
diff --git a/boost/makefile.mk b/boost/makefile.mk
index 18e988d..f77f15a 100644
--- a/boost/makefile.mk
+++ b/boost/makefile.mk
@@ -49,6 +49,9 @@ TARFILE_MD5=d1e9a7a7f532bb031a3c175d86688d95
 PATCH_FILES=\
 $(TARFILE_NAME).patch \
 boost_freebsd.patch
+.IF $(GUI)==OS2
+PATCH_FILES+=boost-os2.patch
+.ENDIF
 
 CONFIGURE_DIR=
 CONFIGURE_ACTION=
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'aoo/trunk' - 2 commits - sfx2/source svx/source

2013-07-06 Thread Pavel Janík
 sfx2/source/sidebar/Layouter.cxx   |2 +-
 svx/source/sidebar/paragraph/ParaPropertyPanel.cxx |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 41a2a272d406ae367a4351a0c71f48c60a20370b
Author: Pavel Janík pavelja...@apache.org
Date:   Sat Jul 6 09:24:41 2013 +

Comment out unused variable to prevent compiler warning.

diff --git a/svx/source/sidebar/paragraph/ParaPropertyPanel.cxx 
b/svx/source/sidebar/paragraph/ParaPropertyPanel.cxx
index 7f136a4..fab2240 100755
--- a/svx/source/sidebar/paragraph/ParaPropertyPanel.cxx
+++ b/svx/source/sidebar/paragraph/ParaPropertyPanel.cxx
@@ -1683,7 +1683,7 @@ ParaPropertyPanel::ParaPropertyPanel(Window* pParent,
 FreeResource();
 
 // Setup the grid layouter.
-const sal_Int32 nMappedImageWidth (Layouter::MapWidth(*this, IMAGE_SIZE));
+// const sal_Int32 nMappedImageWidth (Layouter::MapWidth(*this, 
IMAGE_SIZE));
 const sal_Int32 nMappedImageOffset (Layouter::MapWidth(*this, -3));
 const sal_Int32 nMappedToolBoxItemWidth (Layouter::MapWidth(*this, 
TOOLBOX_ITEM_WIDTH));
 const sal_Int32 nMappedControlWidth (Layouter::MapWidth(*this, 
CONTROL_WIDTH -10));
commit 71285338958c5ee32a8050c0940d357d14e4e7c0
Author: Pavel Janík pavelja...@apache.org
Date:   Sat Jul 6 09:23:34 2013 +

Unname unused argument to prevent compiler warning.

diff --git a/sfx2/source/sidebar/Layouter.cxx b/sfx2/source/sidebar/Layouter.cxx
index 5b651e3..696406b 100644
--- a/sfx2/source/sidebar/Layouter.cxx
+++ b/sfx2/source/sidebar/Layouter.cxx
@@ -90,7 +90,7 @@ void Layouter::SetHorizontalPosition (
 
 
 void Layouter::PrepareForLayouting (
-Window rControl)
+Window /* rControl */)
 {
 //rControl.SetStyle(rControl.GetStyle() | WB_PATHELLIPSIS | WB_INFO);
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] libcdr.git: configure.ac src/lib

2013-07-06 Thread David Tardon
 configure.ac|1 +
 src/lib/CDRDocument.cpp |7 ---
 2 files changed, 5 insertions(+), 3 deletions(-)

New commits:
commit df155ad555c5e4eb9c991d7e08b5a7816e399257
Author: David Tardon dtar...@redhat.com
Date:   Sat Jul 6 12:25:08 2013 +0200

coverity: avoid memory leak on exception

diff --git a/configure.ac b/configure.ac
index 84f2db1..c963784 100644
--- a/configure.ac
+++ b/configure.ac
@@ -98,6 +98,7 @@ AC_SUBST(ICU_LIBS)
 AC_CHECK_HEADERS(
boost/optional.hpp \
boost/property_tree/ptree.hpp \
+   boost/scoped_ptr.hpp \
boost/spirit/include/classic.hpp \
boost/property_tree/json_parser.hpp,
[],
diff --git a/src/lib/CDRDocument.cpp b/src/lib/CDRDocument.cpp
index eeadfaf..6ab7d4d 100644
--- a/src/lib/CDRDocument.cpp
+++ b/src/lib/CDRDocument.cpp
@@ -29,6 +29,7 @@
 
 #include string
 #include string.h
+#include boost/scoped_ptr.hpp
 #include libcdr/libcdr.h
 #include CDRParser.h
 #include CDRSVGGenerator.h
@@ -179,13 +180,13 @@ bool libcdr::CDRDocument::parse(::WPXInputStream *input, 
libwpg::WPGPaintInterfa
 input = zinput.getDocumentOLEStream(content/root.dat);
 if (input)
 {
-  WPXInputStream *tmpStream = 
zinput.getDocumentOLEStream(content/dataFileList.dat);
-  if (tmpStream)
+  boost::scoped_ptrWPXInputStream 
tmpStream(zinput.getDocumentOLEStream(content/dataFileList.dat));
+  if (bool(tmpStream))
   {
 std::string dataFileName;
 while (!tmpStream-atEOS())
 {
-  unsigned char character = readU8(tmpStream);
+  unsigned char character = readU8(tmpStream.get());
   if (character == 0x0a)
   {
 dataFiles.push_back(dataFileName);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] libmspub.git: 3 commits - src/lib

2013-07-06 Thread David Tardon
 src/lib/MSPUBCollector.cpp |   42 +-
 src/lib/MSPUBDocument.cpp  |   13 +++--
 src/lib/MSPUBParser.cpp|   11 ++-
 3 files changed, 30 insertions(+), 36 deletions(-)

New commits:
commit 7a6889b490ca80db4115612b9e441d698374cac0
Author: David Tardon dtar...@redhat.com
Date:   Sat Jul 6 12:55:25 2013 +0200

astyle

diff --git a/src/lib/MSPUBCollector.cpp b/src/lib/MSPUBCollector.cpp
index e002f93..6cad408 100644
--- a/src/lib/MSPUBCollector.cpp
+++ b/src/lib/MSPUBCollector.cpp
@@ -606,7 +606,7 @@ boost::functionvoid(void) 
libmspub::MSPUBCollector::paintShape(const ShapeInfo
 {
   const BorderImgInfo bi = ba.m_images[iOrdOff];
   writeImage(x, y, borderImgWidth, borderImgWidth,
-bi.m_type, bi.m_imgBlob, oneBitColor);
+ bi.m_type, bi.m_imgBlob, oneBitColor);
 }
 if (iOffset + 1 != ba.m_offsets.end())
 {
@@ -614,7 +614,7 @@ boost::functionvoid(void) 
libmspub::MSPUBCollector::paintShape(const ShapeInfo
 }
 // top
 iOrdOff = find(ba.m_offsetsOrdered.begin(),
-  ba.m_offsetsOrdered.end(), *iOffset) - 
ba.m_offsetsOrdered.begin();
+   ba.m_offsetsOrdered.end(), *iOffset) - 
ba.m_offsetsOrdered.begin();
 if (iOrdOff  ba.m_images.size())
 {
   const BorderImgInfo bi = ba.m_images[iOrdOff];
@@ -624,8 +624,8 @@ boost::functionvoid(void) 
libmspub::MSPUBCollector::paintShape(const ShapeInfo
   x + borderImgWidth + (iTop - 1) * 
stretchedImgWidth :
   x + iTop * (borderImgWidth + borderHorizPadding);
 writeImage(imgX, y,
-  borderImgWidth, stretchedImgWidth,
-  bi.m_type, bi.m_imgBlob, oneBitColor);
+   borderImgWidth, stretchedImgWidth,
+   bi.m_type, bi.m_imgBlob, oneBitColor);
   }
 }
 if (iOffset + 1 != ba.m_offsets.end())
@@ -634,13 +634,13 @@ boost::functionvoid(void) 
libmspub::MSPUBCollector::paintShape(const ShapeInfo
 }
 // top right
 iOrdOff = find(ba.m_offsetsOrdered.begin(),
-  ba.m_offsetsOrdered.end(), *iOffset) - 
ba.m_offsetsOrdered.begin();
+   ba.m_offsetsOrdered.end(), *iOffset) - 
ba.m_offsetsOrdered.begin();
 if (iOrdOff  ba.m_images.size())
 {
   const BorderImgInfo bi = ba.m_images[iOrdOff];
   writeImage(x + width - borderImgWidth, y,
-borderImgWidth, borderImgWidth,
-bi.m_type, bi.m_imgBlob, oneBitColor);
+ borderImgWidth, borderImgWidth,
+ bi.m_type, bi.m_imgBlob, oneBitColor);
 }
 if (iOffset + 1 != ba.m_offsets.end())
 {
@@ -648,7 +648,7 @@ boost::functionvoid(void) 
libmspub::MSPUBCollector::paintShape(const ShapeInfo
 }
 // right
 iOrdOff = find(ba.m_offsetsOrdered.begin(),
-  ba.m_offsetsOrdered.end(), *iOffset) - 
ba.m_offsetsOrdered.begin();
+   ba.m_offsetsOrdered.end(), *iOffset) - 
ba.m_offsetsOrdered.begin();
 if (iOrdOff  ba.m_images.size())
 {
   const BorderImgInfo bi = ba.m_images[iOrdOff];
@@ -658,9 +658,9 @@ boost::functionvoid(void) 
libmspub::MSPUBCollector::paintShape(const ShapeInfo
   y + borderImgWidth + (iRight - 1) * 
stretchedImgHeight :
   y + iRight * (borderImgWidth + 
borderVertPadding);
 writeImage(x + width - borderImgWidth,
-  imgY,
-  stretchedImgHeight, borderImgWidth,
-  bi.m_type, bi.m_imgBlob, oneBitColor);
+   imgY,
+   stretchedImgHeight, borderImgWidth,
+   bi.m_type, bi.m_imgBlob, oneBitColor);
   }
 }
 if (iOffset + 1 != ba.m_offsets.end())
@@ -669,14 +669,14 @@ boost::functionvoid(void) 
libmspub::MSPUBCollector::paintShape(const ShapeInfo
 }
 // bottom right
 iOrdOff = find(ba.m_offsetsOrdered.begin(),
-  ba.m_offsetsOrdered.end(), *iOffset) - 
ba.m_offsetsOrdered.begin();
+   ba.m_offsetsOrdered.end(), *iOffset) - 
ba.m_offsetsOrdered.begin();
 if (iOrdOff  ba.m_images.size())
 {
   const BorderImgInfo bi = ba.m_images[iOrdOff];
   writeImage(x + width - borderImgWidth,
-y + height - borderImgWidth,
-borderImgWidth, borderImgWidth,
-

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

2013-07-06 Thread David Tardon
 src/lib/VSDFieldList.cpp |8 ++--
 1 file changed, 6 insertions(+), 2 deletions(-)

New commits:
commit 73a17a5730bfbfb738cf0fa4fe59ad4b478f9731
Author: David Tardon dtar...@redhat.com
Date:   Sat Jul 6 13:34:10 2013 +0200

coverity: gmtime can return NULL

diff --git a/src/lib/VSDFieldList.cpp b/src/lib/VSDFieldList.cpp
index 20c1759..d7efe29 100644
--- a/src/lib/VSDFieldList.cpp
+++ b/src/lib/VSDFieldList.cpp
@@ -74,8 +74,12 @@ WPXString libvisio::VSDNumericField::datetimeToString(const 
char *format, double
   WPXString result;
   char buffer[MAX_BUFFER];
   time_t timer = (time_t)(86400 * datetime - 2209161600.0);
-  strftime(buffer[0], MAX_BUFFER-1, format, gmtime(timer));
-  result.append(buffer[0]);
+  const struct tm *const time = gmtime(timer);
+  if (time)
+  {
+strftime(buffer[0], MAX_BUFFER-1, format, time);
+result.append(buffer[0]);
+  }
   return result;
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Bug 44446] LibreOffice 3.6 most annoying bugs

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=6

Bug 6 depends on bug 57176, which changed state.

Bug 57176 Summary: EDITING: CONDITIONAL FORMATTING not restored by UNDO
https://bugs.freedesktop.org/show_bug.cgi?id=57176

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |FIXED

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


[Libreoffice-commits] libvisio.git: 2 commits - configure.ac src/lib

2013-07-06 Thread Fridrich Štrba
 configure.ac   |1 +
 src/lib/libvisio_utils.cpp |9 ++---
 src/lib/libvisio_utils.h   |2 +-
 3 files changed, 8 insertions(+), 4 deletions(-)

New commits:
commit 688aa1eb357b41e26d0a12f0d34dca426a50feb7
Author: Fridrich Å trba fridrich.st...@bluewin.ch
Date:   Sat Jul 6 15:05:45 2013 +0200

Proper fix for older boost and remove_whitespace

diff --git a/src/lib/libvisio_utils.cpp b/src/lib/libvisio_utils.cpp
index 42e2adc..88bd2b8 100644
--- a/src/lib/libvisio_utils.cpp
+++ b/src/lib/libvisio_utils.cpp
@@ -123,14 +123,15 @@ double libvisio::readDouble(WPXInputStream *input)
   return tmpUnion.d;
 }
 
-void libvisio::appendFromBase64(WPXBinaryData data, const unsigned char 
*base64String, size_t base64StringLength)
+void libvisio::appendFromBase64(WPXBinaryData data, const unsigned char 
*base64Data, size_t base64DataLength)
 {
+  std::string base64String((const char*)base64Data, base64DataLength);
   typedef boost::archive::iterators::transform_width
   boost::archive::iterators::binary_from_base64
-  boost::archive::iterators::remove_whitespace const char *  , 8, 6  
base64_decoder;
+  boost::archive::iterators::remove_whitespace std::string::const_iterator  
, 8, 6  base64_decoder;
 
   std::vectorunsigned char buffer;
-  std::copy(base64_decoder(base64String), base64_decoder(base64String + 
base64StringLength), std::back_inserter(buffer));
+  std::copy(base64_decoder(base64String.begin()), 
base64_decoder(base64String.end()), std::back_inserter(buffer));
 
   if (!buffer.empty())
 data.append(buffer[0], buffer.size());
diff --git a/src/lib/libvisio_utils.h b/src/lib/libvisio_utils.h
index 2298907..3cd6afa 100644
--- a/src/lib/libvisio_utils.h
+++ b/src/lib/libvisio_utils.h
@@ -98,7 +98,7 @@ uint64_t readU64(WPXInputStream *input);
 
 double readDouble(WPXInputStream *input);
 
-void appendFromBase64(WPXBinaryData data, const unsigned char *base64String, 
size_t base64StringLength);
+void appendFromBase64(WPXBinaryData data, const unsigned char *base64Data, 
size_t base64DataLength);
 
 const ::WPXString getColourString(const Colour c);
 
commit 0cde479e62ce80a8a619f2e11b77f7f64b970802
Author: Fridrich Å trba fridrich.st...@bluewin.ch
Date:   Sat Jul 6 14:29:41 2013 +0200

Revert Some older versions of boost have a buggy remove_whitespace and 
original code was not removing either

This reverts commit 6fe924aae90c7aed8a3ad6e172a90a341f7a82ca.

diff --git a/configure.ac b/configure.ac
index c560c1d..dd12566 100644
--- a/configure.ac
+++ b/configure.ac
@@ -112,6 +112,7 @@ AC_CHECK_HEADERS(
boost/optional.hpp \
boost/spirit/include/classic.hpp \
boost/archive/iterators/binary_from_base64.hpp \
+   boost/archive/iterators/remove_whitespace.hpp \
boost/archive/iterators/transform_width.hpp,
[],
[AC_MSG_ERROR(Required boost headers not found. install boost = 1.36)],
diff --git a/src/lib/libvisio_utils.cpp b/src/lib/libvisio_utils.cpp
index 8978385..42e2adc 100644
--- a/src/lib/libvisio_utils.cpp
+++ b/src/lib/libvisio_utils.cpp
@@ -33,6 +33,7 @@
 #include libvisio_utils.h
 
 #include boost/archive/iterators/binary_from_base64.hpp
+#include boost/archive/iterators/remove_whitespace.hpp
 #include boost/archive/iterators/transform_width.hpp
 
 uint8_t libvisio::readU8(WPXInputStream *input)
@@ -125,7 +126,8 @@ double libvisio::readDouble(WPXInputStream *input)
 void libvisio::appendFromBase64(WPXBinaryData data, const unsigned char 
*base64String, size_t base64StringLength)
 {
   typedef boost::archive::iterators::transform_width
-  boost::archive::iterators::binary_from_base64 const char * , 8, 6  
base64_decoder;
+  boost::archive::iterators::binary_from_base64
+  boost::archive::iterators::remove_whitespace const char *  , 8, 6  
base64_decoder;
 
   std::vectorunsigned char buffer;
   std::copy(base64_decoder(base64String), base64_decoder(base64String + 
base64StringLength), std::back_inserter(buffer));
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: libvisio/libvisio-0.0.29-remove_whitespace.patch.1

2013-07-06 Thread Fridrich Štrba
 libvisio/libvisio-0.0.29-remove_whitespace.patch.1 |   36 ++---
 1 file changed, 24 insertions(+), 12 deletions(-)

New commits:
commit c4475946b3171353d0eaefe72ba24e13744458a3
Author: Fridrich Å trba fridrich.st...@bluewin.ch
Date:   Sat Jul 6 15:09:57 2013 +0200

Proper fix for remove_whitespace iterator and older boost

The previous fix was resulting in exceptions in some vdx files.

Change-Id: I961560b66bc29660daca54e39f14f612bbb50e34

diff --git a/libvisio/libvisio-0.0.29-remove_whitespace.patch.1 
b/libvisio/libvisio-0.0.29-remove_whitespace.patch.1
index b8f1eb4..61dc118 100644
--- a/libvisio/libvisio-0.0.29-remove_whitespace.patch.1
+++ b/libvisio/libvisio-0.0.29-remove_whitespace.patch.1
@@ -1,20 +1,32 @@
 --- a/src/lib/libvisio_utils.cpp
 +++ b/src/lib/libvisio_utils.cpp
-@@ -33,7 +33,6 @@
- #include libvisio_utils.h
+@@ -123,14 +123,15 @@ double libvisio::readDouble(WPXInputStream *input)
+   return tmpUnion.d;
+ }
  
- #include boost/archive/iterators/binary_from_base64.hpp
--#include boost/archive/iterators/remove_whitespace.hpp
- #include boost/archive/iterators/transform_width.hpp
- 
- uint8_t libvisio::readU8(WPXInputStream *input)
-@@ -126,8 +125,7 @@ double libvisio::readDouble(WPXInputStream *input)
- void libvisio::appendFromBase64(WPXBinaryData data, const unsigned char 
*base64String, size_t base64StringLength)
+-void libvisio::appendFromBase64(WPXBinaryData data, const unsigned char 
*base64String, size_t base64StringLength)
++void libvisio::appendFromBase64(WPXBinaryData data, const unsigned char 
*base64Data, size_t base64DataLength)
  {
++  std::string base64String((const char*)base64Data, base64DataLength);
typedef boost::archive::iterators::transform_width
--  boost::archive::iterators::binary_from_base64
+   boost::archive::iterators::binary_from_base64
 -  boost::archive::iterators::remove_whitespace const char *  , 8, 6  
base64_decoder;
-+  boost::archive::iterators::binary_from_base64 const char * , 8, 6  
base64_decoder;
++  boost::archive::iterators::remove_whitespace std::string::const_iterator  
, 8, 6  base64_decoder;
  
std::vectorunsigned char buffer;
-   std::copy(base64_decoder(base64String), base64_decoder(base64String + 
base64StringLength), std::back_inserter(buffer));
+-  std::copy(base64_decoder(base64String), base64_decoder(base64String + 
base64StringLength), std::back_inserter(buffer));
++  std::copy(base64_decoder(base64String.begin()), 
base64_decoder(base64String.end()), std::back_inserter(buffer));
+ 
+   if (!buffer.empty())
+ data.append(buffer[0], buffer.size());
+--- a/src/lib/libvisio_utils.h
 b/src/lib/libvisio_utils.h
+@@ -98,7 +98,7 @@ uint64_t readU64(WPXInputStream *input);
+ 
+ double readDouble(WPXInputStream *input);
+ 
+-void appendFromBase64(WPXBinaryData data, const unsigned char *base64String, 
size_t base64StringLength);
++void appendFromBase64(WPXBinaryData data, const unsigned char *base64Data, 
size_t base64DataLength);
+ 
+ const ::WPXString getColourString(const Colour c);
+ 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-4-1' - libvisio/libvisio-0.0.29-remove_whitespace.patch.1

2013-07-06 Thread Fridrich Štrba
 libvisio/libvisio-0.0.29-remove_whitespace.patch.1 |   36 ++---
 1 file changed, 24 insertions(+), 12 deletions(-)

New commits:
commit 23ac92b79220109b2e7c2ac9aad8b36cc2899788
Author: Fridrich Å trba fridrich.st...@bluewin.ch
Date:   Sat Jul 6 15:09:57 2013 +0200

Proper fix for remove_whitespace iterator and older boost

The previous fix was resulting in exceptions in some vdx files.

Change-Id: I961560b66bc29660daca54e39f14f612bbb50e34
(cherry picked from commit c4475946b3171353d0eaefe72ba24e13744458a3)
Reviewed-on: https://gerrit.libreoffice.org/4749
Reviewed-by: David Tardon dtar...@redhat.com
Tested-by: David Tardon dtar...@redhat.com

diff --git a/libvisio/libvisio-0.0.29-remove_whitespace.patch.1 
b/libvisio/libvisio-0.0.29-remove_whitespace.patch.1
index b8f1eb4..61dc118 100644
--- a/libvisio/libvisio-0.0.29-remove_whitespace.patch.1
+++ b/libvisio/libvisio-0.0.29-remove_whitespace.patch.1
@@ -1,20 +1,32 @@
 --- a/src/lib/libvisio_utils.cpp
 +++ b/src/lib/libvisio_utils.cpp
-@@ -33,7 +33,6 @@
- #include libvisio_utils.h
+@@ -123,14 +123,15 @@ double libvisio::readDouble(WPXInputStream *input)
+   return tmpUnion.d;
+ }
  
- #include boost/archive/iterators/binary_from_base64.hpp
--#include boost/archive/iterators/remove_whitespace.hpp
- #include boost/archive/iterators/transform_width.hpp
- 
- uint8_t libvisio::readU8(WPXInputStream *input)
-@@ -126,8 +125,7 @@ double libvisio::readDouble(WPXInputStream *input)
- void libvisio::appendFromBase64(WPXBinaryData data, const unsigned char 
*base64String, size_t base64StringLength)
+-void libvisio::appendFromBase64(WPXBinaryData data, const unsigned char 
*base64String, size_t base64StringLength)
++void libvisio::appendFromBase64(WPXBinaryData data, const unsigned char 
*base64Data, size_t base64DataLength)
  {
++  std::string base64String((const char*)base64Data, base64DataLength);
typedef boost::archive::iterators::transform_width
--  boost::archive::iterators::binary_from_base64
+   boost::archive::iterators::binary_from_base64
 -  boost::archive::iterators::remove_whitespace const char *  , 8, 6  
base64_decoder;
-+  boost::archive::iterators::binary_from_base64 const char * , 8, 6  
base64_decoder;
++  boost::archive::iterators::remove_whitespace std::string::const_iterator  
, 8, 6  base64_decoder;
  
std::vectorunsigned char buffer;
-   std::copy(base64_decoder(base64String), base64_decoder(base64String + 
base64StringLength), std::back_inserter(buffer));
+-  std::copy(base64_decoder(base64String), base64_decoder(base64String + 
base64StringLength), std::back_inserter(buffer));
++  std::copy(base64_decoder(base64String.begin()), 
base64_decoder(base64String.end()), std::back_inserter(buffer));
+ 
+   if (!buffer.empty())
+ data.append(buffer[0], buffer.size());
+--- a/src/lib/libvisio_utils.h
 b/src/lib/libvisio_utils.h
+@@ -98,7 +98,7 @@ uint64_t readU64(WPXInputStream *input);
+ 
+ double readDouble(WPXInputStream *input);
+ 
+-void appendFromBase64(WPXBinaryData data, const unsigned char *base64String, 
size_t base64StringLength);
++void appendFromBase64(WPXBinaryData data, const unsigned char *base64Data, 
size_t base64DataLength);
+ 
+ const ::WPXString getColourString(const Colour c);
+ 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Bug 60270] LibreOffice 4.1 most annoying bugs

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=60270

Samuel M. s.mehrbr...@gmail.com changed:

   What|Removed |Added

 CC||s.mehrbr...@gmail.com
 Depends on||45233

--- Comment #44 from Samuel M. s.mehrbr...@gmail.com ---
I nominate Bug 45233 because you cannot edit pps/ppsx Presentations.

-- 
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: Branch 'feature/vlc' - avmedia/source

2013-07-06 Thread Minh Ngo
 avmedia/source/vlc/vlcmanager.cxx |2 +-
 avmedia/source/vlc/vlcplayer.cxx  |   13 -
 avmedia/source/vlc/vlcplayer.hxx  |9 +
 3 files changed, 18 insertions(+), 6 deletions(-)

New commits:
commit 58b339e0bb2d6edba984cbf5bb6d5b34a4594223
Author: Minh Ngo nlmin...@gmail.com
Date:   Sat Jul 6 21:11:07 2013 +0300

Setting url into the player class

Change-Id: I7175b3ac9a818c6ae0ac0fdbea70b0416df34446

diff --git a/avmedia/source/vlc/vlcmanager.cxx 
b/avmedia/source/vlc/vlcmanager.cxx
index 18681de..1ded627 100644
--- a/avmedia/source/vlc/vlcmanager.cxx
+++ b/avmedia/source/vlc/vlcmanager.cxx
@@ -20,7 +20,7 @@ Manager::~Manager()
 uno::Reference media::XPlayer  SAL_CALL Manager::createPlayer( const 
rtl::OUString rURL )
 throw (uno::RuntimeException)
 {
-VLCPlayer* pPlayer( new VLCPlayer( /* mxMgr */ ) );
+VLCPlayer* pPlayer( new VLCPlayer( rURL/*, mxMgr */ ) );
 uno::Reference media::XPlayer  xRet( pPlayer );
 
 return xRet;
diff --git a/avmedia/source/vlc/vlcplayer.cxx b/avmedia/source/vlc/vlcplayer.cxx
index fb1ad01..12133c1 100644
--- a/avmedia/source/vlc/vlcplayer.cxx
+++ b/avmedia/source/vlc/vlcplayer.cxx
@@ -18,10 +18,21 @@ const char * const VLC_ARGS[] = {
 --quiet
 };
 
-VLCPlayer::VLCPlayer()
+namespace
+{
+libvlc_media_t* initMedia( const rtl::OUString url, 
boost::scoped_ptrlibvlc_instance_t instance)
+{
+rtl::OString dest;
+url.convertToString(dest, RTL_TEXTENCODING_UTF8, 0);
+return libvlc_media_new_path(instance.get(), dest.getStr());
+}
+}
+
+VLCPlayer::VLCPlayer( const rtl::OUString url )
 : VLC_Base(m_aMutex)
 , mInstance( libvlc_new( sizeof( VLC_ARGS ) / sizeof( VLC_ARGS[0] ), 
VLC_ARGS ), libvlc_release )
 , mPlayer( libvlc_media_player_new(mInstance.get()), 
libvlc_media_player_release )
+, mMedia( initMedia( url, mInstance), libvlc_media_release )
 {
 }
 
diff --git a/avmedia/source/vlc/vlcplayer.hxx b/avmedia/source/vlc/vlcplayer.hxx
index d1e5511..c569594 100644
--- a/avmedia/source/vlc/vlcplayer.hxx
+++ b/avmedia/source/vlc/vlcplayer.hxx
@@ -22,7 +22,7 @@
 
 #include vlccommon.hxx
 #include vlc/vlc.h
-#include boost/shared_ptr.hpp
+#include boost/scoped_ptr.hpp
 #include cppuhelper/compbase2.hxx
 #include com/sun/star/media/XPlayer.hpp
 #include cppuhelper/basemutex.hxx
@@ -37,10 +37,11 @@ typedef ::cppu::WeakComponentImplHelper2 
::com::sun::star::media::XPlayer,
 class VLCPlayer : public ::cppu::BaseMutex,
   public VLC_Base
 {
-boost::shared_ptrlibvlc_instance_t mInstance;
-boost::shared_ptrlibvlc_media_player_t mPlayer;
+boost::scoped_ptrlibvlc_instance_t mInstance;
+boost::scoped_ptrlibvlc_media_player_t mPlayer;
+boost::scoped_ptrlibvlc_media_t mMedia;
 public:
-VLCPlayer();
+VLCPlayer( const rtl::OUString url );
 
 void SAL_CALL start();
 void SAL_CALL stop();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'feature/vlc' - avmedia/source

2013-07-06 Thread Minh Ngo
 avmedia/source/vlc/vlccommon.hxx |1 +
 avmedia/source/vlc/vlcplayer.cxx |2 +-
 avmedia/source/vlc/vlcplayer.hxx |8 
 3 files changed, 6 insertions(+), 5 deletions(-)

New commits:
commit e41e4b6ecca066efb62952580b00955c53eab26c
Author: Minh Ngo nlmin...@gmail.com
Date:   Sat Jul 6 22:01:24 2013 +0300

Build fix

Change-Id: I2db954ae56aacd023d7521c20db0e50b1a5b60e1

diff --git a/avmedia/source/vlc/vlccommon.hxx b/avmedia/source/vlc/vlccommon.hxx
index efc022f..6b8e2ca 100644
--- a/avmedia/source/vlc/vlccommon.hxx
+++ b/avmedia/source/vlc/vlccommon.hxx
@@ -21,6 +21,7 @@
 #define _VLCCOMMON_HXX
 
 #include vlc/libvlc.h
+#include vlc/libvlc_media.h
 
 #include osl/mutex.hxx
 #include tools/stream.hxx
diff --git a/avmedia/source/vlc/vlcplayer.cxx b/avmedia/source/vlc/vlcplayer.cxx
index 12133c1..a8eda3e 100644
--- a/avmedia/source/vlc/vlcplayer.cxx
+++ b/avmedia/source/vlc/vlcplayer.cxx
@@ -20,7 +20,7 @@ const char * const VLC_ARGS[] = {
 
 namespace
 {
-libvlc_media_t* initMedia( const rtl::OUString url, 
boost::scoped_ptrlibvlc_instance_t instance)
+libvlc_media_t* initMedia( const rtl::OUString url, 
boost::shared_ptrlibvlc_instance_t instance )
 {
 rtl::OString dest;
 url.convertToString(dest, RTL_TEXTENCODING_UTF8, 0);
diff --git a/avmedia/source/vlc/vlcplayer.hxx b/avmedia/source/vlc/vlcplayer.hxx
index c569594..7417060 100644
--- a/avmedia/source/vlc/vlcplayer.hxx
+++ b/avmedia/source/vlc/vlcplayer.hxx
@@ -22,7 +22,7 @@
 
 #include vlccommon.hxx
 #include vlc/vlc.h
-#include boost/scoped_ptr.hpp
+#include boost/shared_ptr.hpp
 #include cppuhelper/compbase2.hxx
 #include com/sun/star/media/XPlayer.hpp
 #include cppuhelper/basemutex.hxx
@@ -37,9 +37,9 @@ typedef ::cppu::WeakComponentImplHelper2 
::com::sun::star::media::XPlayer,
 class VLCPlayer : public ::cppu::BaseMutex,
   public VLC_Base
 {
-boost::scoped_ptrlibvlc_instance_t mInstance;
-boost::scoped_ptrlibvlc_media_player_t mPlayer;
-boost::scoped_ptrlibvlc_media_t mMedia;
+boost::shared_ptrlibvlc_instance_t mInstance;
+boost::shared_ptrlibvlc_media_player_t mPlayer;
+boost::shared_ptrlibvlc_media_t mMedia;
 public:
 VLCPlayer( const rtl::OUString url );
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Bug 60270] LibreOffice 4.1 most annoying bugs

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=60270

manj_k courrier.oou.fr@googlemail.com changed:

   What|Removed |Added

 Depends on||66478

--- Comment #45 from manj_k courrier.oou.fr@googlemail.com ---
I nominate Bug 66478 – hyphenation is broken.

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


fdo#38147 - FILESAVE File Sharing Password protected MS Word document no longer editable after reopen

2013-07-06 Thread Thomas Arnhold

Hi,

I've somehow investigated the problem with password protected Word 
documents. It was marked as Hard Hack. I have to admit, that I don't 
know any further and someone else with more background on form 
protection has to look into this.


I've attached fix.patch which only shows where the difference between 
both file formats begins. 0001-debug.patch is my debug information.



Here's some of the mail correspondence with mst:

--- snip ---

I compared the behavior of odt and doc files. The difference is at:
http://opengrok.libreoffice.org/xref/core/sw/source/core/crsr/pam.cxx#724

IDocumentSettingAccess::PROTECT_FORM is always 0 for odt files. And 1 
for doc files. This seems strange, I expected that odt files have this 
flag too. So odt has no (proper?) form protection as I understand this. 
I added two files to the bug, which demonstrate, that odt has no form 
protection (I could click the button and the checkbox).


This code block in pam.cxx had a comment in history:
TODO: Form Protection when Enhanced Fields are enabled

What are Enhanced Fields? Are this forms?


Nevertheless if I comment that block out (see patch) the problem is 
fixed. The doc file can be unlocked, edited and saved properly. But I 
don't know what the deeper consequences are ;)


--- snap ---

--- snip ---

On 18.04.2013 13:05, Michael Stahl wrote:
 IDocumentSettingAccess::PROTECT_FORM is always 0 for odt files. And 1
 for doc files. This seems strange, I expected that odt files have this
 flag too. So odt has no (proper?) form protection as I understand this.
 I added two files to the bug, which demonstrate, that odt has no form
 protection (I could click the button and the checkbox).

 apparently this is available at SwXDocumentSettings as ProtectForm
 property and should also be stored into/loaded from ODF files (in a
 generic way).  but the only way for it to be enabled is apparently
 loading an WW8 file.  i assume if you load a WW8 file with it enabled,
 store it as ODF and load again it should be on?

Yes you are right, if I store the ww8 file as odf and load it again the 
form protection mode is on.


 This code block in pam.cxx had a comment in history:
 TODO: Form Protection when Enhanced Fields are enabled

 What are Enhanced Fields? Are this forms?

 ordinary fields in Writer contain just an unformatted string of text,
 and are represented by a single dummy character in the paragraph text.

 the enhanced ones however are implemented totally differently, with a
 special kind of bookmark and dummy 0x04 or so characters in the text to
 mark the start/end positions.  the content of an enhanced field is
 arbitrary paragraph content with arbitrary formatting.

 Nevertheless if I comment that block out (see patch) the problem is
 fixed. The doc file can be unlocked, edited and saved properly. But I
 don't know what the deeper consequences are ;)

 i don't think that is such a good idea.  perhaps there should be some
 way to enable this setting for newly created documents, but i don't know
 how it is possible to create the enhanced fields from the UI... has that
 ever been implemented?   can we just load them from WW8 and ODF
 (extended) files?

I've got some closer to the problem.

https://bugs.freedesktop.org/attachment.cgi?id=48023
( password:  )

-bProtectForm:0
- can be edited and saved in the first iteration

after closing and reloading this is not possible to edit anymore. the 
error described in the bug report pops up.

-bProtectForm:1



https://bugs.freedesktop.org/show_bug.cgi?id=43229

seems to be already saved by libreoffice, because the error pops up by 
default.


- loads with
-bProtectForm:1


Where is the problem? It's at: sw/source/filter/ww8/wrtww8.cxx WriteDop()

rDop.lKeyProtDoc is set to a value so the form protection mode get's 
enabled while saving this file. If you load this file again it will now 
have the form protection mode enabled. This additional check for 
lKeyProtDoc came in with 2559ef0f64b7a9a593d60edfcc8107f3a13ee5e1 in 2010.


This fProtEnabled will bes PROTECT_FORM to true at 
sw/source/filter/ww8/ww8par.cxx ImportDop().


If this is really the root of the problem all ww8 documents with enabled 
protection which were opened/edited and saved since then will have this 
form protection flag enabled and are not editable...


--- snap ---


Hopefully this will get fixed sometime :)


Thomas


diff --git a/sw/source/core/crsr/pam.cxx b/sw/source/core/crsr/pam.cxx
index 182521d..3c3537ff 100644
--- a/sw/source/core/crsr/pam.cxx
+++ b/sw/source/core/crsr/pam.cxx
@@ -721,9 +721,9 @@ bool SwPaM::HasReadonlySel( bool bFormView, bool 
bAnnotationMode ) const
 bool bAtStartA = pA != NULL  pA-GetMarkStart() == *GetPoint();
 bool bAtStartB = pB != NULL  pB-GetMarkStart() == *GetMark();
 bRet = ( pA != pB ) || bAtStartA || bAtStartB;
-bool bProtectForm = pDoc-get( 
IDocumentSettingAccess::PROTECT_FORM );
-if ( bProtectForm )
- 

Re: [Libreoffice-qa] Minutes of the ESC call 2013-07-04

2013-07-06 Thread Tommy
On Sat, 06 Jul 2013 03:24:17 +0200, Thorsten Behrens  
t...@documentfoundation.org wrote:





* Pending Action items:

+ update visible bugzilla versions to hide ~all legacy versions (Joel)
.


will the new 3.3  3.4 all release version tags affect only new  
processed bugs or will have retroactive effect on previously filed bugs?


do we expect to have old versions bugs table merged into a single one?
see link: http://snipurl.com/27e8011

___
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 66638] New: ACCESSIBILITY: entrance dialog does not open templates

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66638

  Priority: medium
Bug ID: 66638
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: ACCESSIBILITY: entrance dialog does not open templates
  Severity: normal
Classification: Unclassified
OS: Windows (All)
  Reporter: g_winkelm...@web.de
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 4.0.3.3 release
 Component: UI
   Product: LibreOffice

Problem description: 

Steps to reproduce:
1. open Libre Office
2. click templates


Current behavior:
nothing

Expected behavior:
show templates in the path(s)


Operating System: Windows XP
Version: 4.0.3.3 release

-- 
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 66639] New: FILESAVE: Corners of rectangle

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66639

  Priority: medium
Bug ID: 66639
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: FILESAVE: Corners of rectangle
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: philipp.s...@gmx.de
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 4.0.4.2 release
 Component: Drawing
   Product: LibreOffice

Problem description: 

Steps to reproduce:
1. Drawing an rectangle
2. rounding the corners of the rectangle
3. saving changes
4. Closing file
5. Open file again
(This bug also occured on libre office for windows)

Current behavior:
The corners aren't rounded any more. This attribute value isn't stored.

Expected behavior:
rounded rectangle


Operating System: Ubuntu
Version: 4.0.4.2 release

-- 
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 66619] FORMATTING: format page orientation same for all sheets

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66619

--- Comment #2 from Ljiljan lili...@gmail.com ---
Thanks... it is bit complicated, but it works. Could this be marked as
enhancement?

-- 
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 66570] Justified Text Spaced Improperly In Newer Version

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66570

Khaled Hosny khaledho...@eglug.org changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #11 from Khaled Hosny khaledho...@eglug.org ---
I can not reproduce the issue with the new file either.

-- 
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 62340] Multiple undo/redo operation erase first letter on nearby indexed words

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62340

tommy27 ba...@quipo.it changed:

   What|Removed |Added

 CC||ba...@quipo.it

--- Comment #13 from tommy27 ba...@quipo.it ---
what about adding a screen recording of you reproducing the 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 66070] Several Greek characters are not displayed correctly with the fonts Calibri and Cambria

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66070

Khaled Hosny khaledho...@eglug.org changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |NOTABUG

--- Comment #14 from Khaled Hosny khaledho...@eglug.org ---
That is by design. The font has contextual substitutions that drop tone marks
for Greek uppercase when followed by other uppercase letters. This does not
happen on Windows because we don’t enable OpenType features for Greek text
there, unlike on Linux or Mac.

-- 
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 66570] Justified Text Spaced Improperly In Newer Version

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66570

--- Comment #12 from osnola alo...@loria.fr ---
Sharky,
it may be related to some problem when computing the display position of the
different characters: a problem which appears only when they are different
fonts properties in the same line(*) and when we choose some non-standart
justification ( via full justification or using condensed/extended character
). 

But as we are using the same system and the same LibreOffice version, maybe a
problem with this compiled version on OSX 10.6.8 ... 

(*) sometimes this is hidden, for instance in your first paragraph, there are
in fact a mix of two different properties :
text:span text:style-name=T7They are otherwise free to use Free,
Mo/text:span
text:span text:style-name=T9ve/text:span
text:span text:style-name=T7 or /text:span
text:span text:style-name=T9Full/text:span
text:span text:style-name=T7 actions (even Running away!) as they normally
would./text:span
which is not visible because T7 and T9 define the same property. 

Note: 
- this problem seems to disappear if I ask to print Nonprinting characters,
so maybe it is only related to spaces' positions...

-- 
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 46817] Screen font anti-aliasing does not work (Windows)

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46817

--- Comment #10 from Stefan Schweizer stefan.schwei...@arcor.de ---
There are several problems with font rendering with LO even with the latest
version 4.0.4.2 (tested on WIN 7 Pro 64bit):
- antialiasing is worse than with MS Powerpoint (feature optimization required)
- turning on/off antialiasing in LO makes no difference (bug)
- with LO impress there is a visible antialising/optimization process on
changing slides which looks bad (bug/optimization required)
- font spacing is not even which looks also bad (seems to be the problem
described in bug 36426)

I've attached a demo presentation where you can see the font rendering problems
on turning slides. I

-- 
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 46817] Screen font anti-aliasing does not work (Windows)

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46817

--- Comment #11 from Stefan Schweizer stefan.schwei...@arcor.de ---
Created attachment 82119
  -- https://bugs.freedesktop.org/attachment.cgi?id=82119action=edit
LO presentation which shows font rendering probems

-- 
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 46817] Screen font anti-aliasing does not work (Windows)

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46817

--- Comment #12 from Stefan Schweizer stefan.schwei...@arcor.de ---
The font rendering problem occurs mainly with LO impress (on turning slides).
With LO Writer no font spacing problem occurs but the bug with turning on/off
antialising is the same: it has no effect on the fonts except on lines
(underscore).

-- 
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 62340] Multiple undo/redo operation erase first letter on nearby indexed words

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62340

--- Comment #14 from Envox d.o.o. i...@envox.hr ---
(In reply to comment #13)
 what about adding a screen recording of you reproducing the bug?

Please note that same bug is fixed on OpenOffice, so maybe the easiest way is
to check this ticker: https://issues.apache.org/ooo/show_bug.cgi?id=121897

-- 
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 46817] Screen font anti-aliasing does not work (Windows)

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46817

--- Comment #13 from Stefan Schweizer stefan.schwei...@arcor.de ---
Created attachment 82120
  -- https://bugs.freedesktop.org/attachment.cgi?id=82120action=edit
Uneven character spacing

Spaces between each character varies.

-- 
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 46817] Screen font anti-aliasing does not work (Windows)

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46817

--- Comment #14 from Stefan Schweizer stefan.schwei...@arcor.de ---
Created attachment 82121
  -- https://bugs.freedesktop.org/attachment.cgi?id=82121action=edit
Even Character spacing with MS Powerpoint

For comparision: Even Character spacing with MS Powerpoint 2010. No character
touches another as with LO impress.

-- 
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 66640] New: LibreOffice Math Guide (EN) contains French text

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66640

  Priority: medium
Bug ID: 66640
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: LibreOffice Math Guide (EN) contains French text
  Severity: trivial
Classification: Unclassified
OS: All
  Reporter: mikekagan...@hotmail.com
  Hardware: Other
Status: UNCONFIRMED
   Version: unspecified
 Component: Documentation
   Product: LibreOffice

https://wiki.documentfoundation.org/Documentation/Publications#LibreOffice_Math_Guide

4.0.x branch PDF:
https://wiki.documentfoundation.org/images/3/37/MG40-MathGuide.pdf

Page 46, second bottom line:

ThisComponent.reformat() ' Met à jour tous les éléments du document

The comment means Updates all elements in the document (translated by Google
Translator).

This (and other, if exist) non-English strings should be translated to English.

-- 
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 66619] FORMATTING: format page orientation same for all sheets

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66619

--- Comment #3 from mariosv mari...@miguelangel.mobi ---
Maybe seems complicated at the begin, but once you are a used, it is simple and
very powerful.

Use styles make easier the job, if e.g. giving it a clear name, or if you have
several sheets with one style, do not needed go one by one to change some
option, modifying the style is enough.

Docking the windows such as StylesFormatting facilitates the work, look in the
Help Index tab for Docking windows.

Thanks... it is bit complicated, but it works. Could this be marked as 
enhancement?

If you want you are free to do it,
but I think it is better review a bit the documentation and work a while with
LibreOffice. If afterwards you even want request the enhancement, fill one
explaining in detail what you want will be achieved, to get a better chance to
get it implemented.

-- 
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 62340] Multiple undo/redo operation erase first letter on nearby indexed words

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62340

tommy27 ba...@quipo.it changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   See Also||https://issues.apache.org/o
   ||oo/show_bug.cgi?id=121897
 Ever confirmed|0   |1

--- Comment #15 from tommy27 ba...@quipo.it ---
you are right... let's see if the LibO devs can backport the AOO fix

-- 
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 66588] Save of sheet in CSV format cuts off formulae

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66588

--- Comment #4 from mariosv mari...@miguelangel.mobi ---
Hi Rober, I guess you are a great donor to LibreOffice project and for sure I
have not enough skills about CSV files to comment about it, with a person like
you with a so high level of knowledge on the matter. Please forgive 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 66588] Save of sheet in CSV format cuts off formulae

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66588

--- Comment #5 from Luuk luu...@gmail.com ---
I think the best option is to disable the choice Fixed column width after
enabling the choice Save cell formulas instead of calculated values

Because it does not make sense to store formulas in a fixed column width.

-- 
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 66572] Images Do Not Scale Properly

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66572

ign_christian ign_christ...@yahoo.com changed:

   What|Removed |Added

 Status|REOPENED|NEEDINFO

--- Comment #12 from ign_christian ign_christ...@yahoo.com ---
Hi Sharky, James has said on comment 5 that it's ok with 4.1.0.2. Have you
tested with that release?

You can only reopened this bug if you reproduce the problem with that release
or later.

So we mark that NEEDINFO until you confirm

-- 
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 66498] Other: strange behaviour of round down function

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66498

mariosv mari...@miguelangel.mobi changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |NOTABUG

--- Comment #5 from mariosv mari...@miguelangel.mobi ---
Hi novell191, thanks for your collaboration.

Maybe a formula like this can help in your situation:

=ROUNDDOWN(ROUND(100-100,2;3);2)

Making first a simple ROUND() with a decimal plus than in the ROUNDDOWN().

Changed the status to resolved notabug. Please if you are not agree reopen it.

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


[Libreoffice-bugs] [Bug 59484] : Dialog endExecute() crash libreoffice

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=59484

--- Comment #11 from francogpellegr...@hotmail.com ---
This can be reproduced with Libreoffice 4.0.4.2

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


[Libreoffice-bugs] [Bug 59484] : Dialog endExecute() crash libreoffice

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=59484

--- Comment #12 from francogpellegr...@hotmail.com ---
(using dispose())

-- 
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 46817] Screen font anti-aliasing does not work (Windows)

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46817

--- Comment #15 from Stefan Schweizer stefan.schwei...@arcor.de ---
The font rendering problem only occurs on Windows. On e.g. Ubuntu everything is
fine!

-- 
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 57176] EDITING: CONDITIONAL FORMATTING not restored by UNDO

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=57176

rh_li...@bmharding.freeserve.co.uk changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |FIXED

--- Comment #30 from rh_li...@bmharding.freeserve.co.uk ---
I think there was a duplicate bug that I've now marked as Resolved and realised
that this one was marked REOPENED.

I'll mark this RESOLVED also, though I have since identified another bug on
Paste Special... Add... which does not handle blank cells as if they were zero
and ends up putting things in the wrong cells. I'll try to find the time to
knock up a simple example and post a new bug for that later today.

-- 
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 66405] FILEOPEN: Extra spaces around a formula added when importing a Word-document

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66405

--- Comment #9 from Mike Kaganski mikekagan...@hotmail.com ---
This comment by no means doesn't pretend to be a solution to this bug;
rather, it is a kludge for those who need to have their work done while this
bug is being fixed.

You may use the following macro to remove all spacing around all formulas in a
document at once:

Sub SetMathBorder
  On Error Resume Next ' Prevents deleted objects from causing errors.
  oCurrentController = ThisComponent.getCurrentController()
  oTextDocument = oCurrentController.Model
  oEmbeddedObjects = oTextDocument.EmbeddedObjects
  nEndIndex = oEmbeddedObjects.Count-1
  for nIndex=0 to nEndIndex
oMathObject = oEmbeddedObjects.getByIndex(nIndex)
oModel = oMathObject.Model
if (not isNull(oModel)) then
  if(not isEmpty(oModel)) then
'if oModel.supportsService(com.sun.star.formula.FormulaProperties)
then
if oMathObject.CLSID = 078B7ABA-54FC-457F-8551-6147e776a997 then
  oMathObject.LeftMargin = 0
  oMathObject.RightMargin = 0
  oMathObject.TopMargin = 0
  oMathObject.BottomMargin = 0

  oModel.LeftMargin = 0
  oModel.RightMargin = 0
  oModel.TopMargin = 0
  oModel.BottomMargin = 0
  ' Update
  oXCOEO = oMathObject.ExtendedControlOverEmbeddedObject
  oXCOEO.Update()
endif ' if formula
  endif ' if not empty
endif ' if not null
  next nIndex
  ThisComponent.Reformat() ' Updates all elements in the document
End Sub

The macro removes both spacing accessible by Object-Wrap, and menu
Format-Spacing-Category-Borders inside formula. Also, this will make
formulas to regenerate, i.e. stop showing cached image (this may be
considered good or bad, depending on the correctness of formulas import).

Thanks to: LO Documentation team and their LibreOffice Math Guide 
http://api.libreoffice.org;
AOO Wiki @
http://wiki.openoffice.org/wiki/Documentation/FAQ/Formula/How_do_I_change_the_spacing_around_my_formula%3f.

-- 
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 44446] LibreOffice 3.6 most annoying bugs

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=6

Bug 6 depends on bug 57176, which changed state.

Bug 57176 Summary: EDITING: CONDITIONAL FORMATTING not restored by UNDO
https://bugs.freedesktop.org/show_bug.cgi?id=57176

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |FIXED

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


[Libreoffice-bugs] [Bug 65067] unnecessary horizontal spacing around formulas

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=65067

--- Comment #17 from Mike Kaganski mikekagan...@hotmail.com ---
In Bug 66405 (comment No.9), I posted a macro to remove all spacing around all
formulas in a document at once. Hope this helps.

-- 
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 66498] Other: strange behaviour of round down function

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66498

--- Comment #6 from novell...@gmail.com ---
this work properly!
Thanks!

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


[Libreoffice-bugs] [Bug 61946] FORMATTING: multiple conditional formatting lost after copy, save, reopen file

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61946

--- Comment #10 from rh_li...@bmharding.freeserve.co.uk ---
In bugs such as 57176, which is similar, the main problem was fixed in the
nightly builds recently, so it might be worth reviewing this to see if it can
be marked as FIXED (if it's fixed in the Dev Build) albeit awaiting roll-out to
the Stable build.

-- 
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 66583] Other: Loosing Radii on Rectangles after Save and Re-Open

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66583

mariosv mari...@miguelangel.mobi changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE
 CC||mari...@miguelangel.mobi

--- Comment #1 from mariosv mari...@miguelangel.mobi ---
https://bugs.freedesktop.org/show_bug.cgi?id=39907

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

-- 
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 66639] FILESAVE: Corners of rectangle

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66639

mariosv mari...@miguelangel.mobi changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE
 CC||mari...@miguelangel.mobi

--- Comment #1 from mariosv mari...@miguelangel.mobi ---


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

-- 
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 66644] New: In spreadsheet the values of the cells are invisible, the data is there but the sheet looks blank

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66644

  Priority: medium
Bug ID: 66644
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: In spreadsheet the values of the cells are invisible,
the data is there but the sheet looks blank
  Severity: major
Classification: Unclassified
OS: Mac OS X (All)
  Reporter: wal...@knollflorist.com
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.0.4.2 release
 Component: Spreadsheet
   Product: LibreOffice

This is a new install Mac that was cloned from the old one as it was replaced,
it is on the latest os, latest Java, Version 4.0.4.2, When you open or create a
new spreadsheet the cells look blank, I have other machines on the same version
of everything that are working fine, Changing the background and/or foreground
colors does nothing.

-- 
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 66645] New: XHTML export: bad alignment/spacing of mathematical expressions

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66645

  Priority: medium
Bug ID: 66645
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: XHTML export: bad alignment/spacing of mathematical
expressions
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: fred.w...@free.fr
  Hardware: All
Status: UNCONFIRMED
   Version: 4.2.0.0.alpha0+ Master
 Component: filters and storage
   Product: LibreOffice

Created attachment 82122
  -- https://bugs.freedesktop.org/attachment.cgi?id=82122action=edit
testcase

draw:frame with MathML expressions contain margin-left, margin-right and
vertical-align styles that make the alignment and spacing of mathematical
formulas incorrect. Try to export the testcase to XHTML.

-- 
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 66645] XHTML export: bad alignment/spacing of mathematical expressions

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66645

--- Comment #1 from Frédéric Wang fred.w...@free.fr ---
I've submitted a patch for review:

https://gerrit.libreoffice.org/4751

This should fix the bad vertical alignment of formulas. A space before/after
the math element is now added which may be less artificial than margin
properties (issues remain when an inline formula is followed by e.g. a comma or
period).

-- 
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 60270] LibreOffice 4.1 most annoying bugs

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=60270

Samuel M. s.mehrbr...@gmail.com changed:

   What|Removed |Added

 CC||s.mehrbr...@gmail.com
 Depends on||45233

--- Comment #44 from Samuel M. s.mehrbr...@gmail.com ---
I nominate Bug 45233 because you cannot edit pps/ppsx Presentations.

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


[Libreoffice-bugs] [Bug 66435] Layoutmanager should prevent one tab alone in a row

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66435

Björn Michaelsen bjoern.michael...@canonical.com changed:

   What|Removed |Added

   Hardware|x86-64 (AMD64)  |All
 OS|Windows (All)   |All
 CC||caol...@redhat.com
Summary|The Background tab in |Layoutmanager should
   |Paragraph looks odd   |prevent one tab alone in a
   ||row
  Component|Writer  |UI

--- Comment #2 from Björn Michaelsen bjoern.michael...@canonical.com ---
So the odd behaviour is that the second row of tabs actually has only one
entry, which leads to behaviour which is not intuitive. A possible solution
would be to either ensure that each row has at least two entries, or even
better, distribute them ~evenly.

@Caolan: Easy Hack maybe, with a few code pointers?

-- 
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 66193] IDE: Code disappears

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66193

--- Comment #5 from Dieter Burkhardt dieter.burkha...@hispeed.ch ---
I have made an reload of the release 4.0.4.2
I renamed my LO directory (i coudent find any 'my macros')

After changing and saveing a dialog mask the code of the local document macros
is parial disapeared. in some libraries the modules are available but the
modules are empties

Where are the macros of a local document?

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


[Libreoffice-bugs] [Bug 66646] New: EDITING: Paste Special... Add does not treat Empty Cells as zero value

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66646

  Priority: medium
Bug ID: 66646
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: EDITING: Paste Special... Add does not treat Empty
Cells as zero value
  Severity: major
Classification: Unclassified
OS: All
  Reporter: rh_li...@bmharding.freeserve.co.uk
  Hardware: x86 (IA32)
Status: UNCONFIRMED
   Version: 4.2.0.0.alpha0+ Master
 Component: Spreadsheet
   Product: LibreOffice

Created attachment 82123
  -- https://bugs.freedesktop.org/attachment.cgi?id=82123action=edit
Simple Paste Special... Add bug demo containing instructions to replicate

The instructions are in the attached file
PasteSpecialAddEmptyCellBug.ods

This bug is NOT present in the stable version of LibO I have installed:
Version 4.0.3.3 (Build ID: 0eaa50a932c8f2199a615e1eb30f7ac74279539)

The bug IS present in a recent nightly build:
Version: 4.2.0.0.alpha0+
Build ID: 6f86d931b4266d00fec75c0124ac9fc3026a4f1b
TinderBox: Win-x86@6, Branch:master, Time: 2013-07-02_23:36:17

I noticed the bug after the Conditional Format display bug 62267 was fixed in
the Dev version nightly builds.

In brief, Copy from Row 1 then Paste Special/Add onto Row 2, should produce the
values in Row 3 (and Row 3's Conditional Format will then have green background
to confirm this. I deliberately did not include CF in the destination row as
there had been a problem with that in Bug 62267 that is now fixed)

If the Row 2 value is an Empty Cell (but not if it's a numerical zero) no value
is pasted into Row 2 and the cell remains empty. The two wrong values are
indicated by Row 3 conditional formatting background remaining red.

I hope this can be fixed before it's incorporated into a public release because
it will produce numerical errors compared to earlier versions and other
spreadsheet applications such as MS Excel.

-- 
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 66435] Layoutmanager should prevent one tab alone in a row

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66435

--- Comment #3 from Björn Michaelsen bjoern.michael...@canonical.com ---
code pointers:

Rectangle TabControl::ImplGetTabRect( sal_uInt16 nItemPos, long nWidth, long
nHeight )

in

vcl/source/control/tabctrl.cxx seems to be a good starting point:
http://opengrok.libreoffice.org/xref/core/vcl/source/control/tabctrl.cxx#344

-- 
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 66478] FORMATTING: Hyphenation is not working

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66478

--- Comment #3 from gerdl e...@arcor.de ---
also in 4.1.0.2.0 german hyphenation is not working.
even after german.de-frama wad loaded.
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 66647] New: formatting: writer crashes when changing fonts

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66647

  Priority: medium
Bug ID: 66647
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: formatting: writer crashes when changing fonts
  Severity: normal
Classification: Unclassified
OS: Windows (All)
  Reporter: supp...@happypenguincomputers.com
  Hardware: x86-64 (AMD64)
Status: UNCONFIRMED
   Version: 4.0.4.2 release
 Component: Writer
   Product: LibreOffice

LibreOffice 4.0.4.2, Windows 7 Home Premium.

When changing fonts, LibreOffice crashes. I can attach a file if needed, or a
log if Windows creates one and you can tell me the location. It only seems to
crash when I highlight text, then click the Font Name drop down menu, and
scroll through the fonts with the middle wheel of my mouse. If I just click to
select a font that's already showing, or scroll with the up or down arrows in
the drop down menu, it does not crash.

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


[Libreoffice-bugs] [Bug 66647] formatting: writer crashes when changing fonts

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66647

--- Comment #1 from mingdao supp...@happypenguincomputers.com ---
Created attachment 82125
  -- https://bugs.freedesktop.org/attachment.cgi?id=82125action=edit
test file for crashing

-- 
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 66648] New: Using VLOOKUP to find a period (.) in an unsorted list returns the index for 'M'. Everything else OK.

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66648

  Priority: medium
Bug ID: 66648
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Using VLOOKUP to find a period (.) in an unsorted list
returns the index for 'M'. Everything else OK.
  Severity: major
Classification: Unclassified
OS: Linux (All)
  Reporter: jogde...@yahoo.com
  Hardware: x86-64 (AMD64)
Status: UNCONFIRMED
   Version: unspecified
 Component: Spreadsheet
   Product: LibreOffice

I am using VLOOKUP to search an unordered list to find words, symbols,
punctuation marks, etc. It works fine for everything except a period(.). It
always gives me the letter 'M'. The list contains 75,500 entries and the period
is located approximately 2,000 entries down the list from the 'M'. Here's the
syntax I am using:  =VLOOKUP(AS$3,$Y1:Z$75500,2,0).

I swapped the positions of the M and period and it works fine. It properly
finds both the period and M. Strange happenings .. Any ideas??

-- 
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 66647] formatting: writer crashes when scrolling through font list with middle mouse wheel

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66647

mingdao supp...@happypenguincomputers.com changed:

   What|Removed |Added

Summary|formatting: writer crashes  |formatting: writer crashes
   |when changing fonts |when scrolling through font
   ||list with middle mouse
   ||wheel

-- 
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 66647] formatting: writer crashes when scrolling through font list with middle mouse wheel

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66647

--- Comment #2 from Mikko Ahlroth mikko.ahlroth+freedesk...@gmail.com ---
The reporter also commented to me (on IRC) that this happens on every file they
have tried and that it did not happen with a previous version. No fonts were
installed to the system before or after the upgrade to 4.0.4.

-- 
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 66203] FORMATTING: Heading levels in docx format

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66203

--- Comment #2 from Paul B p...@brasington.co.uk ---
I was using Windows 8 but have reverted to Win7 (x64)- so I have a clean OS
install but I'm still have the same problem (also using LO 4.1). I thought it
might be because I have been using a customised default template which was
first created in an older version of LibreOffice - so I tried reverting to the
standard text document template but it has made no difference.

-- 
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 44621] With MacOSX 10.7 and later, dragging an image from the desktop to LO Writer is not possible

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44621

--- Comment #24 from ramuntcho chris.s...@yahoo.com ---
Hi,


In 4.0.4, bug still present with Mac OS X 10.7 and 10.8.

So, it seems that nobody can (or want to) correct this bug. This bug has now
more than 18 months 

Bug isn't present on NeoOffice so it could be possible to correct it, no ?


:-((  Christian

-- 
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 66649] New: Build error in sc/inc/mtvelements.hxx

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66649

  Priority: medium
Bug ID: 66649
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Build error in sc/inc/mtvelements.hxx
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: cont...@0x17.ch
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.1.0.1 rc
 Component: Spreadsheet
   Product: LibreOffice

Hi

I tried to build 4.1.0.1 and got the following error:

[...]
[build CMP] framework/util/fwk
[build CXX] sc/source/core/data/attarray.cxx
[build CXX] sc/source/core/data/attrib.cxx
[build CXX] sc/source/core/data/autonamecache.cxx
[build CXX] sc/source/core/data/bcaslot.cxx
[build CXX] sc/source/core/data/bigrange.cxx
[build CXX] sc/source/core/data/cell.cxx
[build CXX] sc/source/core/data/cell2.cxx
[build CXX] sc/source/core/data/cellvalue.cxx
In file included from
/home/nicolas/paldo/spielwiese/libo/sc/inc/column.hxx:28:0,
 from /home/nicolas/paldo/spielwiese/libo/sc/inc/table.hxx:28,
 from
/home/nicolas/paldo/spielwiese/libo/sc/source/core/data/bcaslot.cxx:30:
/home/nicolas/paldo/spielwiese/libo/sc/inc/mtvelements.hxx:66:97: error: wrong
number of template arguments (2, should be 1)
In file included from
/home/nicolas/paldo/spielwiese/libo/sc/inc/mtvelements.hxx:27:0,
 from /home/nicolas/paldo/spielwiese/libo/sc/inc/column.hxx:28,
 from /home/nicolas/paldo/spielwiese/libo/sc/inc/table.hxx:28,
 from
/home/nicolas/paldo/spielwiese/libo/sc/source/core/data/bcaslot.cxx:30:
/usr/include/mdds/multi_type_vector_custom_func1.hpp:40:8: error: provided for
‘templateclass _Block struct mdds::mtv::custom_block_func1’
In file included from
/home/nicolas/paldo/spielwiese/libo/sc/inc/column.hxx:28:0,
 from /home/nicolas/paldo/spielwiese/libo/sc/inc/table.hxx:28,
 from
/home/nicolas/paldo/spielwiese/libo/sc/source/core/data/bcaslot.cxx:30:
/home/nicolas/paldo/spielwiese/libo/sc/inc/mtvelements.hxx:66:108: error:
invalid type in declaration before ‘;’ token
/home/nicolas/paldo/spielwiese/libo/sc/inc/mtvelements.hxx:70:99: error: wrong
number of template arguments (2, should be 1)
In file included from
/home/nicolas/paldo/spielwiese/libo/sc/inc/mtvelements.hxx:27:0,
 from /home/nicolas/paldo/spielwiese/libo/sc/inc/column.hxx:28,
 from /home/nicolas/paldo/spielwiese/libo/sc/inc/table.hxx:28,
 from
/home/nicolas/paldo/spielwiese/libo/sc/source/core/data/bcaslot.cxx:30:
/usr/include/mdds/multi_type_vector_custom_func1.hpp:40:8: error: provided for
‘templateclass _Block struct mdds::mtv::custom_block_func1’
In file included from
/home/nicolas/paldo/spielwiese/libo/sc/inc/column.hxx:28:0,
 from /home/nicolas/paldo/spielwiese/libo/sc/inc/table.hxx:28,
 from
/home/nicolas/paldo/spielwiese/libo/sc/source/core/data/bcaslot.cxx:30:
/home/nicolas/paldo/spielwiese/libo/sc/inc/mtvelements.hxx:70:111: error:
invalid type in declaration before ‘;’ token
make[1]: ***
[/home/nicolas/paldo/spielwiese/libo/workdir/unxlngx6.pro/CxxObject/sc/source/core/data/bcaslot.o]
Error 1
make[1]: *** Waiting for unfinished jobs
make[1]: write error
make: *** [build] Error 1

I used:
./autogen.sh   --disable-epm   --disable-extra-font   --disable-fetch-external 
 --disable-gnome-vfs   --disable-kde   --disable-kdeab  
--with-system-npapi-headers=no   --disable-online-update  
--disable-postgresql-sdbc   --disable-systray   --enable-dbus  
--enable-evolution2   --enable-gio   --enable-graphite   --enable-gstreamer  
--disable-gstreamer-0-10   --enable-lockdown   --enable-python=system  
--enable-release-build   --enable-vba   --enable-hardlink-deliver
--with-external-dict-dir=/usr/share/hunspell  
--with-external-hyph-dir=/usr/share/hyphen  
--with-external-thes-dir=/usr/share/mythes   --with-lang=en-US de fr it es  
--with-system-nss   --without-afms   --without-fonts   --without-java  
--without-myspell-dicts   --without-ppds   --without-system-beanshell  
--without-system-hsqldb   --with-system-cairo   --with-system-clucene  
--with-system-ucpp   --with-system-dicts   --with-system-headers  
--with-system-libs   --with-system-mythes

GCC is:
$ gcc -v
[...]
gcc version 4.7.2 (GCC)

Any idea?

-- 
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 66648] Using VLOOKUP to find a period (.) in an unsorted list returns the index for 'M'. Everything else OK.

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66648

mariosv mari...@miguelangel.mobi changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||mari...@miguelangel.mobi
 Ever confirmed|0   |1

--- Comment #1 from mariosv mari...@miguelangel.mobi ---
Hi Jim, thanks for reporting.

The period(.) is part of regular expressions, I think there are two options:
- Disable regular expression in Menu/Tools/Options/LibreOffice/Calculate.
- If you want use regular expressions, put a backslash before the period \.

You can find about it in the help index tab, searching for regular expressions.
Please confirm if this solve your issue.

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


[Libreoffice-bugs] [Bug 66646] EDITING: Paste Special... Add does not treat Empty Cells as zero value

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66646

mariosv mari...@miguelangel.mobi changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||mari...@miguelangel.mobi
   Keywords||regression
 Ever confirmed|0   |1

--- Comment #1 from mariosv mari...@miguelangel.mobi ---
Hi rh_libre, thanks for reporting.

Reproducible with:
Win7x64 Ultimate. 
Version: 4.2.0.0.alpha0+ Build ID: e703b429cf448deddc7682a33c3e6221889efe98

Skip empty destination cells.

Works as expected:
Version 4.0.4.2 (Build ID: 9e9821abd0ffdbc09cd8c52eaa574fa09eb08f2)
Version: 4.1.0.1 Build ID: 1b3956717a60d6ac35b133d7b0a0f5eb55e9155

-- 
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 66478] FORMATTING: Hyphenation is not working

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66478

manj_k courrier.oou.fr@googlemail.com changed:

   What|Removed |Added

   Severity|normal  |major
   Priority|medium  |high
 CC||courrier.oou.fr.mjk@googlem
   ||ail.com
   Keywords||regression

--- Comment #4 from manj_k courrier.oou.fr@googlemail.com ---
Tested and confirmed (on WinXP 32b) with:

Version 4.1.0.2.0
Build ID: 103a942746cfe346e87daab62acbd4268c38097

Version 4.1.1.0.0+
Build ID: 03c0f9976dc1c77973658aa02db2823bfc9a09a
TinderBox: Win-x86_9-Voreppe, Branch:libreoffice-4-1, Time: 2013-07-05_09:14:47

Version 4.2.0.0.alpha0+
Build ID: 8624906bc437b242ea0df17801bc77d0f273f32c
TinderBox: Win-x86@6, Branch:master, Time: 2013-07-05_04:07:10.

Tested languages: English (USA), French (France), German (Germany).

-- 
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 60270] LibreOffice 4.1 most annoying bugs

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=60270

manj_k courrier.oou.fr@googlemail.com changed:

   What|Removed |Added

 Depends on||66478

--- Comment #45 from manj_k courrier.oou.fr@googlemail.com ---
I nominate Bug 66478 – hyphenation is broken.

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


[Libreoffice-bugs] [Bug 66646] EDITING: Paste Special... Add does not treat Empty Cells as zero value

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66646

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

   What|Removed |Added

  Attachment #82123|text/plain  |application/vnd.oasis.opend
  mime type||ocument.spreadsheet

-- 
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 66478] FORMATTING: Hyphenation is not working

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66478

manj_k courrier.oou.fr@googlemail.com changed:

   What|Removed |Added

 Blocks||60270

-- 
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 66528] Hyperlinks within spreadsheet not working after upgrade from Version 4.0.2.2 to Version 4.0.4.2

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66528

--- Comment #12 from Wolf Schmoger wschmo...@t-online.de ---
Not english speaking, sorry for some errors,
the hyperlinks local from file to file and in a file as an alphabetic jump-list
will be shown but they don't 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 58896] EDITING: Comment

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58896

manj_k courrier.oou.fr@googlemail.com changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |NOTABUG

--- Comment #2 from manj_k courrier.oou.fr@googlemail.com ---
That works as designed.
Marked as RESOLVED NOTABUG.

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


[Libreoffice-bugs] [Bug 66652] New: page format needs off buttons for headers and footers

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66652

  Priority: medium
Bug ID: 66652
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: page format needs off buttons for headers and footers
  Severity: normal
Classification: Unclassified
OS: Windows (All)
  Reporter: bob...@cox.net
  Hardware: Other
Status: NEW
   Version: 4.0.3.3 release
 Component: Writer
   Product: LibreOffice

FORMATTING--Setting up for a small imprint that needed tight location, left the
header and footer blocks unchecked, the only way I could indicate that I didn't
want them. 
But whenever I was working on the top line, the header line kept appearing,
with its flag blocking my text, so I kept trying to turn it off, but it kept
reappearing. Same problem with footer on bottom line. 

There should be off blocks on the header/footer settings, or else make no check
equal to off.

Besides the annoyance of putting up with the flags, I wound up with 15 extra
blank following pages which I can't delete, but were apparently created by my
struggles with the headers/footers.

-- 
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 66653] New: FORMATTING Unable to delete extra blank following pages

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66653

  Priority: medium
Bug ID: 66653
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: FORMATTINGUnable to delete extra blank following
pages
  Severity: normal
Classification: Unclassified
OS: Windows (All)
  Reporter: bob...@cox.net
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.0.3.3 release
 Component: Writer
   Product: LibreOffice

Due to a malfunction reported separately, I wound up with 15 blank following
pages after my 1-page project. The extra pages had no text or formatting,
except for the print boundary I set up for the first page, and possibly empty
footers and headers.

-- 
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 65343] Association with Powerpoint files is checked by default

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=65343

--- Comment #9 from Pedro pedl...@gmail.com ---
On another PC running Windows XP with Office 2003 and LO 4.0.1.2 installed when
I updated to LO 4.1.0.2 all files were associated with LO (because I had chosen
so when I installed LO 4.0.1.2). However all file associations BUT Excel were
selected during install of 4.1 

Opening a folder containing several spreadsheets I noticed that xls and xlsx
files showed the LO icon but csv files showed the Excel icon.

BTW checking the Excel files in the 4.1 installer did NOT associated csv files
with LO

I guess what TDF needs to figure out is which file associations should LO take
over when selected initially and take seriously this proposal
https://bugs.freedesktop.org/show_bug.cgi?id=44462

-- 
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 66654] New: REPORTBUILDER: report from sortet view not sortet, design new report LO crashed

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66654

  Priority: medium
Bug ID: 66654
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: REPORTBUILDER: report from sortet view not sortet,
design new report LO crashed
  Severity: normal
Classification: Unclassified
OS: Windows (All)
  Reporter: wschmo...@t-online.de
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 4.0.4.2 release
 Component: Database
   Product: LibreOffice

Problem description: 
a report (from version 3.3) based on a sortet list Abfrage ?query is not
sortet in new version (4.0.4). I design a new report by using the same list,
manually and with wizard. When i try to save the report LO crashes. The
database can be rebuild. 
Steps to reproduce:
1. 
2. 
3. 

Current behavior:

Expected behavior:


Operating System: Windows 7
Version: 4.0.4.2 release

-- 
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 66655] New: EDITING: GETPIVOTDATA() gives #REF!

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66655

  Priority: medium
Bug ID: 66655
  Keywords: regression
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: EDITING: GETPIVOTDATA() gives #REF!
  Severity: critical
Classification: Unclassified
OS: Windows (All)
  Reporter: mari...@miguelangel.mobi
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.1.0.1 rc
 Component: Spreadsheet
   Product: LibreOffice

Created attachment 82129
  -- https://bugs.freedesktop.org/attachment.cgi?id=82129action=edit
Sample GETPIVOTDATA calculation error

GETPIVOTDATA() always gives #REF! as result. Attached file created with 4.0.4.2
With:
Win7x64Ultimate
Version: 4.1.0.1 Build ID: 1b3956717a60d6ac35b133d7b0a0f5eb55e9155
Version: 4.2.0.0.alpha0+ Build ID: 40026a2fcd88851e18f701a10c3cddc87b549476

The attached file produce normal result in:
Version 4.0.4.2 (Build ID: 9e9821abd0ffdbc09cd8c52eaa574fa09eb08f2)

-- 
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 66570] Justified Text Spaced Improperly In Newer Version

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66570

--- Comment #13 from Sharky randroid1...@yahoo.com ---
Yes, good observation. It disappears for me when I change text color or
highlight the text, or when I show nonprinting characters.

I know jack squat about text properties, should probably look into that. Right
now I'm happy with just going back to the current release.

-- 
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 66572] Images Do Not Scale Properly

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=66572

--- Comment #13 from Sharky randroid1...@yahoo.com ---
Unfortunately no, the latest prerelease I see is 4.1.0.1.

http://www.libreoffice.org/download/pre-releases/

It looks like all the cool kids have 4.1.0.2 or something. It's not something I
seem to be able to find (nightly builds?)

-- 
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 61493] FORMATTING: Custom Categories for Captions

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61493

--- Comment #3 from Florent Angly florent.an...@gmail.com ---
I think this feature has been present in LibreOffice for a long time.

In the caption menu  Category: simply write the name of the new category you
would like to use.

-- 
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 57884] Checkboxes in LibreOffice Writer documents disappear

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=57884

Klaus R. bussibae...@gmx.de changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|DUPLICATE   |---
Version|4.0.1.2 release |4.0.4.2 release

--- Comment #9 from Klaus R. bussibae...@gmx.de ---
UBUNTU 12.04 LibreOffice 4.0.4.2

The checkboxes change from visible to invisible and back randomly
in normal view, not in design mode or webview!

Would be great to get this solved soon.

A little workaround to get some fillable forms in LibreOffice (not in
pdf-form):

Use textfield with maxchar = 1 and password sign = X

-- 
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 57884] Checkboxes in LibreOffice Writer documents disappear

2013-07-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=57884

Klaus R. bussibae...@gmx.de changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #10 from Klaus R. bussibae...@gmx.de ---
UBUNTU 12.04 LibreOffice 4.0.4.2

The checkboxes change from visible to invisible and back randomly
in normal view, not in design mode or webview!

Would be great to get this solved soon.

A little workaround to get some fillable forms in LibreOffice (not in
pdf-form):

Use textfield with maxchar = 1 and password sign = X

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

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