Contextual menu of Libreoffice Writer

2012-12-27 Thread Carmen Alonso

LibreOffice developers:


I am a math teacher who used a lot this suite (on Ubuntu). And I really 
miss in the contextual menutwo commands:


- Command to equalize properties (to match the format brush)

- An equation editor, like MathType(for me, the better)

Many colleagues use MS Word for that reason.

I don't know computer programming so I can not help develop the program.

Thank youvery much

Carmen Alonso
from Valencia - España
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


License Statement

2012-12-27 Thread Joren

I confirm that all of my past and future contributions to the
LibreOffice project are licensed under the MPL / LGPLv3+.

Kind regards,
Joren De Cuyper

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


[Libreoffice-commits] .: basctl/source

2012-12-27 Thread Libreoffice Gerrit user
 basctl/source/basicide/baside2.cxx |9 ++---
 1 file changed, 2 insertions(+), 7 deletions(-)

New commits:
commit 47139512bc5df08704fd9df362c7de86b99fe7e8
Author: Marcos Paulo de Souza marcos.souza@gmail.com
Date:   Wed Dec 26 14:44:52 2012 -0200

fdo#57950: remove consecutive append in basctl with StringBuffer

Change-Id: I43464dd702c6b4a63df39b6a4b35bec63712d5e6
Signed-off-by: Marcos Paulo de Souza marcos.souza@gmail.com
Reviewed-on: https://gerrit.libreoffice.org/1486
Reviewed-by: Tor Lillqvist t...@iki.fi
Tested-by: Tor Lillqvist t...@iki.fi

diff --git a/basctl/source/basicide/baside2.cxx 
b/basctl/source/basicide/baside2.cxx
index fa9d50e..c6c3545 100644
--- a/basctl/source/basicide/baside2.cxx
+++ b/basctl/source/basicide/baside2.cxx
@@ -134,13 +134,8 @@ void lcl_PrintHeader( Printer* pPrinter, sal_uInt16 
nPages, sal_uInt16 nCurPage,
 
 if( bOutput )
 {
-OUStringBuffer aPageStr;
-aPageStr.appendAscii(  [ );
-aPageStr.append(IDE_RESSTR(RID_STR_PAGE));
-aPageStr.append(' ');
-aPageStr.append( nCurPage );
-aPageStr.append(']');
-pPrinter-DrawText( aPos, aPageStr.makeStringAndClear() );
+OUString aPageStr =  [ + IDE_RESSTR(RID_STR_PAGE) +   + 
OUString::valueOf( nCurPage ) + ];
+pPrinter-DrawText( aPos, aPageStr );
 }
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PUSHED] fdo#57950: remove consecutive append in basctl with StringBu...

2012-12-27 Thread Tor Lillqvist (via Code Review)
Hi,

Thank you for your patch!  It has been merged to LibreOffice.

If you are interested in details, please visit

https://gerrit.libreoffice.org/1486

Approvals:
  Tor Lillqvist: Verified; Looks good to me, approved


--
To view, visit https://gerrit.libreoffice.org/1486
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I43464dd702c6b4a63df39b6a4b35bec63712d5e6
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Marcos Souza marcos.souza@gmail.com
Gerrit-Reviewer: Tor Lillqvist t...@iki.fi

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


Temporary shutdown of my two tinderboxes during holiday season

2012-12-27 Thread Thorsten Behrens
MacOSX-Intel_3-OSX_10.6.0-gcc_4.0.1

and

Linux-Fedora17-x86_64_4-gcc-4.7-dbgutil

located at my place, will be off for the next ~7 days. And I'll be
mostly off the grid, too. ;)

All the best,

-- Thorsten


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


[Libreoffice-commits] .: solenv/gbuild svl/source sw/source tools/source

2012-12-27 Thread Libreoffice Gerrit user
 solenv/gbuild/platform/com_MSC_defs.mk |1 -
 svl/source/inc/poolio.hxx  |2 +-
 sw/source/filter/html/css1atr.cxx  |4 +++-
 sw/source/filter/html/htmlatr.cxx  |4 +++-
 sw/source/filter/ww8/ww8atr.cxx|4 +++-
 tools/source/fsys/dirent.cxx   |2 +-
 6 files changed, 11 insertions(+), 6 deletions(-)

New commits:
commit c318f3b0224a57102614be0efec4b49c80a3aa82
Author: Tor Lillqvist t...@iki.fi
Date:   Thu Dec 27 13:07:11 2012 +0200

Check for _MSC_VER instead of MSC in sources

Change-Id: Ibaf2501e6b655913963a53c1cd63668f1c4cccb2

diff --git a/solenv/gbuild/platform/com_MSC_defs.mk 
b/solenv/gbuild/platform/com_MSC_defs.mk
index 1e9ac46..1e8004f 100644
--- a/solenv/gbuild/platform/com_MSC_defs.mk
+++ b/solenv/gbuild/platform/com_MSC_defs.mk
@@ -50,7 +50,6 @@ gb_CXX := $(CXX)
 endif
 
 gb_COMPILERDEFS := \
-   -DMSC \
-D_CRT_NON_CONFORMING_SWPRINTFS \
-D_CRT_NONSTDC_NO_DEPRECATE \
-D_CRT_SECURE_NO_DEPRECATE \
diff --git a/svl/source/inc/poolio.hxx b/svl/source/inc/poolio.hxx
index dd3e74a..13477eb 100644
--- a/svl/source/inc/poolio.hxx
+++ b/svl/source/inc/poolio.hxx
@@ -142,7 +142,7 @@ struct SfxItemPool_Impl
 #  undef DBG
 #endif
 
-#if defined(DBG_UTIL)  defined(MSC)
+#if defined(DBG_UTIL)  defined(_MSC_VER)
 #define DBG(x) x
 #else
 #define DBG(x)
diff --git a/sw/source/filter/html/css1atr.cxx 
b/sw/source/filter/html/css1atr.cxx
index 46c1ddb..796ac3c 100644
--- a/sw/source/filter/html/css1atr.cxx
+++ b/sw/source/filter/html/css1atr.cxx
@@ -103,7 +103,9 @@ using ::editeng::SvxBorderLine;
  * diese Section und die dazugeherigen Tabellen muessen in folgenden Files
  * gepflegt werden: rtf\rtfatr.cxx, sw6\sw6atr.cxx, w4w\w4watr.cxx
  */
-#if !defined(UNX)  !defined(MSC)  !defined(PPC)  !defined(__MINGW32__)
+#if !defined(UNX)  !defined(_MSC_VER)  !defined(PPC)  
!defined(__MINGW32__)
+
+#error Interesting, I though this ifdef block would never be compiled. So 
remove this line and please tell me --t...@iki.fi
 
 #define ATTRFNTAB_SIZE 130
 #if ATTRFNTAB_SIZE != POOLATTR_END - POOLATTR_BEGIN
diff --git a/sw/source/filter/html/htmlatr.cxx 
b/sw/source/filter/html/htmlatr.cxx
index 7bd1af6..d48202e 100644
--- a/sw/source/filter/html/htmlatr.cxx
+++ b/sw/source/filter/html/htmlatr.cxx
@@ -86,7 +86,9 @@ using namespace ::com::sun::star;
  * diese Section und die dazugeherigen Tabellen muessen in folgenden Files
  * gepflegt werden: rtf\rtfatr.cxx, sw6\sw6atr.cxx, w4w\w4watr.cxx
  */
-#if !defined(UNX)  !defined(MSC)  !defined(PPC)  !defined(__MINGW32__)
+#if !defined(UNX)  !defined(_MSC_VER)  !defined(PPC)  
!defined(__MINGW32__)
+
+#error Interesting, I though this ifdef block would never be compiled. So 
remove this line and please tell me --t...@iki.fi
 
 #define ATTRFNTAB_SIZE 130
 #if ATTRFNTAB_SIZE != POOLATTR_END - POOLATTR_BEGIN
diff --git a/sw/source/filter/ww8/ww8atr.cxx b/sw/source/filter/ww8/ww8atr.cxx
index b45ee1a..2c9c3e9 100644
--- a/sw/source/filter/ww8/ww8atr.cxx
+++ b/sw/source/filter/ww8/ww8atr.cxx
@@ -140,7 +140,9 @@ using namespace nsSwDocInfoSubType;
  * gepflegt werden: rtf\rtfatr.cxx, sw6\sw6atr.cxx, w4w\w4watr.cxx
 */
 
-#if !defined(MSC)  !defined(UNX)  !defined(PPC)  !defined(__MINGW32__)
+#if !defined(_MSC_VER)  !defined(UNX)  !defined(PPC)  
!defined(__MINGW32__)
+
+#error Interesting, I though this ifdef block would never be compiled. So 
remove this line and please tell me --t...@iki.fi
 
 #define ATTRFNTAB_SIZE 130
 #if ATTRFNTAB_SIZE != POOLATTR_END - POOLATTR_BEGIN
diff --git a/tools/source/fsys/dirent.cxx b/tools/source/fsys/dirent.cxx
index cc0d3ff..1e9000b 100644
--- a/tools/source/fsys/dirent.cxx
+++ b/tools/source/fsys/dirent.cxx
@@ -1337,7 +1337,7 @@ DirEntry DirEntry::TempName( DirEntryKind eKind ) const
  * Welcome to the 21st century, we can have longer filenames now ;)
  * New format: pfx + 5 char milli/micro second res + current 
pid + .tmp
  */
-#if (defined MSC || defined __MINGW32__)  defined WNT
+#ifdef _WIN32
 /* Milliseconds !! */
 static unsigned long u = GetTickCount();
 unsigned long mypid = static_castunsigned long(_getpid());
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: sw/source

2012-12-27 Thread Libreoffice Gerrit user
 sw/source/filter/html/css1atr.cxx |   20 
 sw/source/filter/html/htmlatr.cxx |   27 ---
 sw/source/filter/ww8/ww8atr.cxx   |   27 ---
 3 files changed, 74 deletions(-)

New commits:
commit f7ad8786736c4682c2ee45c33665c8364bab6547
Author: Tor Lillqvist t...@iki.fi
Date:   Thu Dec 27 14:43:42 2012 +0200

Get rid of duplicated and apparently unused historical leftovers

Change-Id: I3ce6d7c9cfba9f1391e9cb26df2573ea969d2f94

diff --git a/sw/source/filter/html/css1atr.cxx 
b/sw/source/filter/html/css1atr.cxx
index 796ac3c..f9159c6 100644
--- a/sw/source/filter/html/css1atr.cxx
+++ b/sw/source/filter/html/css1atr.cxx
@@ -94,26 +94,6 @@
 using namespace ::com::sun::star;
 using ::editeng::SvxBorderLine;
 
-/*
- * um nicht immer wieder nach einem Update festzustellen, das irgendwelche
- * Hint-Ids dazugekommen sind, wird hier definiert, die Groesse der Tabelle
- * definiert und mit der akt. verglichen. Bei unterschieden wird der
- * Compiler schon meckern.
- *
- * diese Section und die dazugeherigen Tabellen muessen in folgenden Files
- * gepflegt werden: rtf\rtfatr.cxx, sw6\sw6atr.cxx, w4w\w4watr.cxx
- */
-#if !defined(UNX)  !defined(_MSC_VER)  !defined(PPC)  
!defined(__MINGW32__)
-
-#error Interesting, I though this ifdef block would never be compiled. So 
remove this line and please tell me --t...@iki.fi
-
-#define ATTRFNTAB_SIZE 130
-#if ATTRFNTAB_SIZE != POOLATTR_END - POOLATTR_BEGIN
-#error Attribut-Tabelle ist ungueltigt. Wurden neue Hint-IDs zugefuegt ??
-#endif
-
-#endif
-
 #define HTML_HEADSPACE (12*20)
 
 #define CSS1_BACKGROUND_ATTR1
diff --git a/sw/source/filter/html/htmlatr.cxx 
b/sw/source/filter/html/htmlatr.cxx
index d48202e..9e84dc3 100644
--- a/sw/source/filter/html/htmlatr.cxx
+++ b/sw/source/filter/html/htmlatr.cxx
@@ -77,33 +77,6 @@
 
 using namespace ::com::sun::star;
 
-/*
- * um nicht immer wieder nach einem Update festzustellen, das irgendwelche
- * Hint-Ids dazugekommen sind, wird hier definiert, die Groesse der Tabelle
- * definiert und mit der akt. verglichen. Bei unterschieden wird der
- * Compiler schon meckern.
- *
- * diese Section und die dazugeherigen Tabellen muessen in folgenden Files
- * gepflegt werden: rtf\rtfatr.cxx, sw6\sw6atr.cxx, w4w\w4watr.cxx
- */
-#if !defined(UNX)  !defined(_MSC_VER)  !defined(PPC)  
!defined(__MINGW32__)
-
-#error Interesting, I though this ifdef block would never be compiled. So 
remove this line and please tell me --t...@iki.fi
-
-#define ATTRFNTAB_SIZE 130
-#if ATTRFNTAB_SIZE != POOLATTR_END - POOLATTR_BEGIN
-#error Attribut-Tabelle ist ungueltigt. Wurden neue Hint-IDs zugefuegt ??
-#endif
-
-#define NODETAB_SIZE 3
-#if NODETAB_SIZE != RES_NODE_END - RES_NODE_BEGIN
-#error Node-Tabelle ist ungueltigt. Wurden neue Hint-IDs zugefuegt ??
-#endif
-
-#endif
-
-//---
-
 HTMLOutEvent aAnchorEventTable[] =
 {
 { OOO_STRING_SVTOOLS_HTML_O_SDonclick,  
OOO_STRING_SVTOOLS_HTML_O_onclick,  SFX_EVENT_MOUSECLICK_OBJECT },
diff --git a/sw/source/filter/ww8/ww8atr.cxx b/sw/source/filter/ww8/ww8atr.cxx
index 2c9c3e9..d6cbdaa 100644
--- a/sw/source/filter/ww8/ww8atr.cxx
+++ b/sw/source/filter/ww8/ww8atr.cxx
@@ -129,33 +129,6 @@ using ::editeng::SvxBorderLine;
 using namespace ::com::sun::star;
 using namespace nsFieldFlags;
 using namespace nsSwDocInfoSubType;
-
-/*
- * um nicht immer wieder nach einem Update festzustellen, das irgendwelche
- * Hint-Ids dazugekommen sind, wird hier definiert, die Groesse der Tabelle
- * definiert und mit der akt. verglichen. Bei unterschieden wird der
- * Compiler schon meckern.
- *
- * diese Section und die dazugeherigen Tabellen muessen in folgenden Files
- * gepflegt werden: rtf\rtfatr.cxx, sw6\sw6atr.cxx, w4w\w4watr.cxx
-*/
-
-#if !defined(_MSC_VER)  !defined(UNX)  !defined(PPC)  
!defined(__MINGW32__)
-
-#error Interesting, I though this ifdef block would never be compiled. So 
remove this line and please tell me --t...@iki.fi
-
-#define ATTRFNTAB_SIZE 130
-#if ATTRFNTAB_SIZE != POOLATTR_END - POOLATTR_BEGIN
-#   error Attribut-Tabelle ist ungueltigt. Wurden neue Hint-ID's zugefuegt ??
-#endif
-
-#define NODETAB_SIZE 3
-#if NODETAB_SIZE != RES_NODE_END - RES_NODE_BEGIN
-#   error Node-Tabelle ist ungueltigt. Wurden neue Hint-ID's zugefuegt ??
-#endif
-
-#endif
-
 using namespace sw::util;
 using namespace sw::types;
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PATCH] String Cleanup and news OUString methods/constructors

2012-12-27 Thread Ricardo Montania (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1491

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/91/1491/1

String Cleanup and news OUString methods/constructors

Change-Id: Ia6142020330d0e12650fdc519b66f00e607eac42
---
M filter/source/xsltdialog/xmlfiltertestdialog.cxx
M tools/inc/tools/tempfile.hxx
M tools/source/fsys/tempfile.cxx
M unotools/inc/unotools/tempfile.hxx
M unotools/source/ucbhelper/tempfile.cxx
5 files changed, 304 insertions(+), 86 deletions(-)


--
To view, visit https://gerrit.libreoffice.org/1491
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ia6142020330d0e12650fdc519b66f00e607eac42
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ricardo Montania rica...@linuxafundo.com.br

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


No UNSIGNED_BYTE in Any

2012-12-27 Thread Lionel Elie Mamane
Hi,

The following code does not do what one would think:

 sal_uInt8 nValue = 255;
 Any aValue;
 aValue = nValue;

aValue now contains a *BOOLEAN*. That's rather... surprising, and
could bite any of us one day. In particular:

 sal_uInt8 naValue;
 aValue = naValue;

now naValue contains 1. Not 255..

Ideally, I'd like that we fix this in LibreOffice 4.1.

The cleanest would be to add support for unsigned 8 bit integer in
Any, which as far as I understand would entail:

 - adding typelib_TypeClass_UNSIGNED_BYTE to cppu/inc/typelib/typeclass.h

 - adding UNSIGNED_BYTE to udkapi/com/sun/star/uno/TypeClass.idl (published!)

I'm not sure what the consequences of the latter are. E.g. do all Uno
bindings/bridges/... (Java, StarBasic, Python, ...) have to be updated
one by one?

Also, it seems the basic mechanism of dispatch with Any is C++
overloads; in particular, this is what happens in:

 aValue = nValue

But sal_uInt8 and sal_Bool are typedefs of the same type, namely
unsigned char, so I don't know how to make the distinction between
sal_Bool and sal_uInt8 in there.

So frankly, I'm not sure what to do... If we were a
pure C++ program, I'd change:

typedef unsigned char sal_Bool;

into

typedef bool sal_Bool;

or maybe

class sal_Bool
{
unsigned char m_bValue;
// constructors, member functions, operators, etc so that
// everything works right
}


But we have a pure C layer, so no can no do. In my understanding,
even C99's _Bool type won't save us, for several reasons:

1) I'm not sure it is really a different type than the other integer
   types
2) It is not available in C++, so we can't have it in C++ code?
3) MSVC doesn't have C99 anyway


Hmm... Could we do something like:

typedef struct _sal_Bool
{
unsigned char bValue;
#ifdef __cplusplus
inline operator bool() const
{
   return bValue;
}
inline _sal_Bool(bool b)
  : bValue(b)
{ }
inline void operator=(bool b)
{
  bValue=b;
}
#endif
} sal_Bool;
#   define sal_False ((sal_Bool){0})
#   define sal_True  ((sal_Bool){1})
#ifdef __cplusplus
bool operator==(sal_Bool b0, sal_Bool b1)
{
  return b0.bValue == b1.bValue;
}
#endif

??

So, in pure C code, we can still write:

 sal_Bool b0 = sal_False;
 sal_Bool b1 = sal_True;
 b0 = b1;

but we'd have to write:

 if (b0.bValue) {}
 if (b0.bValue == b1.bValue) {}
 b0.bValue = A || B  C

On the other hand, in C++ code, we could write:

 if (b0 == sal_False) {}
 if (b0 == b1) {}
 if (b0) {}
 b0 = A || B  C

The other solution would be an enum? Makes things a bit easier in C,
but less in C++. All these would work in C:

 if (b0 == sal_False) {}
 if (b0 == b1) {}
 if (b0) {}

but not

 b0 = A || B  C

and I don't think we can get it to work in C++, either.

So I'd rather make things maximally easy in C++, which is our main
language :)

Since we are in our unstable API/ABI period, *if* we can have a
clean solution, let's have it for LibreOffice 4.1. Since the in-memory
layout of sal_Bool does not change (right?), this might even be fully
ABI-compatible? (but not API-compatible for C, but API-compatible for
C++)


In terms of more hackish solutions, I have thought of not normalising
sal_Bool in Any (to make them true synonyms of sal_uInt8), *but*
this would break any code of the form:

 if (b0 == sal_True) {}
 switch (b0)
 {
case sal_False:
case sal_True:
 }

so, bleh, not looking forward to it. It would be something like:

diff --git a/cppu/inc/com/sun/star/uno/Any.hxx
b/cppu/inc/com/sun/star/uno/Any.hxx
index 6f3bda9..62ca967 100644
--- a/cppu/inc/com/sun/star/uno/Any.hxx
+++ b/cppu/inc/com/sun/star/uno/Any.hxx
@@ -248,7 +248,7 @@ inline sal_Bool SAL_CALL operator = ( const 
::com::sun::star::uno::Any  rAny,
 {
 if (typelib_TypeClass_BOOLEAN == rAny.pType-eTypeClass)
 {
-value = (* reinterpret_cast const sal_Bool * ( rAny.pData ) != 
sal_False);
+value = * reinterpret_cast const sal_Bool * ( rAny.pData );
 return sal_True;
 }
 return sal_False;
diff --git a/cppu/source/uno/copy.hxx b/cppu/source/uno/copy.hxx
index ce46492..d532d21 100644
--- a/cppu/source/uno/copy.hxx
+++ b/cppu/source/uno/copy.hxx
@@ -179,7 +179,7 @@ inline void _copyConstructAnyFromData(
 break;
 case typelib_TypeClass_BOOLEAN:
 pDestAny-pData = pDestAny-pReserved;
-*(sal_Bool *)pDestAny-pData = (*(sal_Bool *)pSource != sal_False);
+*(sal_Bool *)pDestAny-pData = *(sal_Bool *)pSource;
 break;
 case typelib_TypeClass_BYTE:
 pDestAny-pData = pDestAny-pReserved;



Why did I get into this? Well, see https://gerrit.libreoffice.org/#/c/1164/


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


Re: [PATCH] Base: fix incorrect field removal in criterion inside query design view

2012-12-27 Thread Lionel Elie Mamane
On Wed, Dec 19, 2012 at 06:34:18PM +0100, Olivier Ploton wrote:
 On Thu, 13 Dec 2012 07:53:24 +0100
 Lionel Elie Mamane lio...@mamane.lu wrote:
 On Wed, Dec 12, 2012 at 10:53:07PM +0100, Olivier Ploton wrote:

 Problem: you cannot type a field name inside a criterion
 if the field name is also the column name, even if it is qualified.

 The [Table_1].[name] gets deleted. I see.

 There are actually two problems there:

 1) the [Table_1].[name] should be deleted ONLY at the beginning of
the expression, not later.

 That's what your patch handles.

 Now, I'm uncertain if we should check rString.isEmpty() or
 i == m_aChildren.begin(). Maybe it is equivalent, but I'm not sure
 yet. Since you have looked at this code more than I did at this point,
 do you have an opinion?

 IMO it's not equivalent.

OK, not equivalent. But which one is the *right* test? Would testing
i == m_aChildren.begin() give a wrong result?

 To avoid testing emptiness of buffer, I thought about adding a bool (or 
 sal_Bool ?):

Nah, if emptiness of buffer is the right test, it is the right test :)

 2) The [Table_1].[name] should be deleted ONLY if it refers to the
current column.

 Currently *only* the column name is checked, not the source table.

 IMO, throwing away column name at the very beginning of the
 statement is a consistent way of simplifying. Not high end but
 useful and far better than nothing.

I feel you didn't understand my remark. I mean this in the query
design:

Field: name
Table: Table_2
Condition: [Table_1].[name] = 5

gets rewritten to:

Field: name
Table: Table_2
Condition: 5

which is *not* the same! Because [Table_1].[name] is *not* the
current column! The [Table_1].[name] should be deleted *only* if
Table_1 is the current table (as entered in Table) *and* name is
the current field (as entered in Field).

 So my current thought is that we should add a sTableAlias member to
 rParam, populate it in the code above, and pass it along down to
 impl_parseNodeToString_throw, where it can use it instead of
 PROPERTY_TABLENAME in my patch.

 Do you feel like you can look into this?

 I'm trying to do it but I'm having a hard time with aliases... Right
 now I'm still digging in the sources... Wait and see.

Let me know what comes out of it :)

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


Cppcheck reports Resource leak in setup_native/source/win32/wintools/makecab/parseddf.c

2012-12-27 Thread julien2412
Hello,

cppcheck reported this:
[setup_native/source/win32/wintools/makecab/parseddf.c:381]: (error)
Resource leak: ddf
it's in the function ParseDdf
fclose function seems to miss.

(see
http://opengrok.libreoffice.org/xref/core/setup_native/source/win32/wintools/makecab/parseddf.c#356)

I'm not able to build on Windows but I think that adding this line:
fclose (ddf);

before this line:
return DDF_OK;

should be ok.

Someone to confirm?

Julien



--
View this message in context: 
http://nabble.documentfoundation.org/Cppcheck-reports-Resource-leak-in-setup-native-source-win32-wintools-makecab-parseddf-c-tp4026214.html
Sent from the Dev mailing list archive at Nabble.com.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[GERRIT DOWN FOR MAINTENANCE] is over

2012-12-27 Thread David Ostrovsky

Hi,

gerrit is available again (version 2.5.1).

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


Cppcheck reports an assignment which isn't used in sd/source/ui/func/fupage.cxx

2012-12-27 Thread julien2412
Hello,

Cppcheck reported this:
[sd/source/ui/func/fupage.cxx:243]: (style) Variable 'pPtr' is assigned a
value that is never used

Here are some lines:
236 const sal_uInt16* pPtr = aNewAttr.GetRanges();
237 sal_uInt16 p1 = pPtr[0], p2 = pPtr[1];
238 while(pPtr[2]  (pPtr[2] - p2 == 1))
239 {
240 p2 = pPtr[3];
241 pPtr += 2;
242 }
243 pPtr += 2;
see
http://opengrok.libreoffice.org/xref/core/sd/source/ui/func/fupage.cxx#238
pPtr isn't used.

So either it can just be removed or something is wrong here.

Any idea?

Julien




--
View this message in context: 
http://nabble.documentfoundation.org/Cppcheck-reports-an-assignment-which-isn-t-used-in-sd-source-ui-func-fupage-cxx-tp4026217.html
Sent from the Dev mailing list archive at Nabble.com.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Cppcheck false positive? (eg 'PropEntry::operator=' should return 'PropEntry ')

2012-12-27 Thread julien2412
Hello,

Cppcheck reports this kind of thing:
[sd/source/filter/ppt/propread.hxx:116]: (style) 'PropEntry::operator='
should return 'PropEntry '.
116 const PropEntry operator=(const PropEntry rPropEntry);

Indeed, I understand this cppcheck report, if you assign a variable, the
result can't be considered as const.
But since I'm still a C++ beginner... I may be wrong. 

Any idea?

Julien



--
View this message in context: 
http://nabble.documentfoundation.org/Cppcheck-false-positive-eg-PropEntry-operator-should-return-PropEntry-tp4026218.html
Sent from the Dev mailing list archive at Nabble.com.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PUSHED] convert icu to gbuild and add to tail_build

2012-12-27 Thread Tor Lillqvist (via Code Review)
Hi,

Thank you for your patch!  It has been merged to LibreOffice.

If you are interested in details, please visit

https://gerrit.libreoffice.org/1488

Approvals:
  Tor Lillqvist: Verified; Looks good to me, approved


-- 
To view, visit https://gerrit.libreoffice.org/1488
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Id7d8bc05b1393cc2bae4a531c8a47f62df24b1d6
Gerrit-PatchSet: 5
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Peter Foley pefol...@verizon.net
Gerrit-Reviewer: Peter Foley pefol...@verizon.net
Gerrit-Reviewer: Tor Lillqvist t...@iki.fi

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


Re: Cppcheck false positive? (eg 'PropEntry::operator=' should return 'PropEntry ')

2012-12-27 Thread Kohei Yoshida
On Thu, Dec 27, 2012 at 9:53 AM, julien2412 serval2...@yahoo.fr wrote:

 Hello,

 Cppcheck reports this kind of thing:
 [sd/source/filter/ppt/propread.hxx:116]: (style) 'PropEntry::operator='
 should return 'PropEntry '.
 116 const PropEntry operator=(const PropEntry rPropEntry);

 Indeed, I understand this cppcheck report, if you assign a variable, the
 result can't be considered as const.


Yes, the assignment operator should always return a non-const reference of
self.  Cppcheck is correct on this.

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


Re: Cppcheck false positive? (eg 'PropEntry::operator=' should return 'PropEntry ')

2012-12-27 Thread Julien Nabet

On 27/12/2012 19:36, Kohei Yoshida wrote:



On Thu, Dec 27, 2012 at 9:53 AM, julien2412 serval2...@yahoo.fr 
mailto:serval2...@yahoo.fr wrote:


Hello,

Cppcheck reports this kind of thing:
[sd/source/filter/ppt/propread.hxx:116]: (style)
'PropEntry::operator='
should return 'PropEntry '.
116 const PropEntry operator=(const PropEntry rPropEntry);

Indeed, I understand this cppcheck report, if you assign a
variable, the
result can't be considered as const.


Yes, the assignment operator should always return a non-const 
reference of self.  Cppcheck is correct on this.


Kohei

Thank you Kohei for your feedback, I pushed 2 commits, see:
https://gerrit.libreoffice.org/gitweb?p=core.git;a=commitdiff;h=8068f50276659058ef02958996d8ef84cd89017f

https://gerrit.libreoffice.org/gitweb?p=core.git;a=commitdiff;h=a1ff0ec108822d593bb293b6d37a34e6e7c012e5

But there are still these:
[lingucomponent/source/languageguessing/simpleguesser.hxx:43]: (style) 
'SimpleGuesser::operator=' should return 'SimpleGuesser '.
[reportdesign/source/filter/xml/xmlComponent.hxx:37]: (style) 
'OXMLComponent::operator=' should return 'OXMLComponent '.
[reportdesign/source/filter/xml/xmlFunction.hxx:41]: (style) 
'OXMLFunction::operator=' should return 'OXMLFunction '.
[reportdesign/source/filter/xml/xmlGroup.hxx:38]: (style) 
'OXMLGroup::operator=' should return 'OXMLGroup '.
[reportdesign/source/filter/xml/xmlCell.hxx:41]: (style) 
'OXMLCell::operator=' should return 'OXMLCell '.


All except first one, return an object instead of a ref to an object. I 
don't know if I can't just put  or if it should be investigated.

First one isn't an assignment but a comparison! Isn't it a little dangerous?

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


Re: Contextual menu of Libreoffice Writer

2012-12-27 Thread Regina Henschel

Hi Carmen,

this is the wrong list. This list is for doing actual development. 
Please use us...@global.libreoffice.org or 
disc...@documentfoundation.org to discuss your ideas.
If a feature is really missing, then you should write a feature request 
in our Bugzilla.


Carmen Alonso schrieb:

LibreOffice developers:


I am a math teacher who used a lot this suite (on Ubuntu). And I really
miss in the contextual menutwo commands:

 - Command to equalize properties (to match the format brush)

 - An equation editor, like MathType(for me, the better)


Why do you need them in contextual menu? To get a quick access to the 
equation editor, you can customize a toolbar to show the icon. I use the 
standard toolbar for this in all modules. You find the icon in the 
category Insert. It is the command Formula, which has a square-root 
as icon.


As far as I know, MathType is not available for Linux systems but only 
for Windows and Mac. Have you already tried the Dmaths extension? 
http://www.dmaths.org/documentation/doku.php?id=presentation:en


Do you know the Math Guide? 
http://www.libreoffice.org/get-help/documentation/




Many colleagues use MS Word for that reason.


If they use a MS Office 2010, an editable exchange is difficult.



I don't know computer programming so I can not help develop the program.


You need not pogramming to help LibreOffice. We are also seeking for 
people for writing documentations, for translating, for user support, 
for design, for testing ...


Kind regards
Regina


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


Re: Cppcheck false positive? (eg 'PropEntry::operator=' should return 'PropEntry ')

2012-12-27 Thread Lubos Lunak
On Thursday 27 of December 2012, Julien Nabet wrote:
 But there are still these:
 [lingucomponent/source/languageguessing/simpleguesser.hxx:43]: (style)
 'SimpleGuesser::operator=' should return 'SimpleGuesser '.
 [reportdesign/source/filter/xml/xmlComponent.hxx:37]: (style)
 'OXMLComponent::operator=' should return 'OXMLComponent '.
 [reportdesign/source/filter/xml/xmlFunction.hxx:41]: (style)
 'OXMLFunction::operator=' should return 'OXMLFunction '.
 [reportdesign/source/filter/xml/xmlGroup.hxx:38]: (style)
 'OXMLGroup::operator=' should return 'OXMLGroup '.
 [reportdesign/source/filter/xml/xmlCell.hxx:41]: (style)
 'OXMLCell::operator=' should return 'OXMLCell '.

 All except first one, return an object instead of a ref to an object. I
 don't know if I can't just put  or if it should be investigated.

 http://courses.cms.caltech.edu/cs11/material/cpp/donnie/cpp-ops.html

 But there's of course a small chance that whoever wrote the operator= 
incorrectly not only didn't know how to do it right but also wrote it in a 
way that cleaning it up will uncover another problem (I'm pretty sure I've 
run into such one already).

 First one isn't an assignment but a comparison! Isn't it a little
 dangerous?

 No idea what you mean.

-- 
 Lubos Lunak
 l.lu...@suse.cz
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PUSHED] fdo#58222 The BASIC HEX Command now returns uppercase hexade...

2012-12-27 Thread Norbert Thiebaud (via Code Review)
Hi,

Thank you for your patch!  It has been merged to LibreOffice.

If you are interested in details, please visit

https://gerrit.libreoffice.org/1428

Approvals:
  Norbert Thiebaud: Verified; Looks good to me, approved


-- 
To view, visit https://gerrit.libreoffice.org/1428
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Id6ea93a7635c1913c8592bf5519bdd7391f4e3bc
Gerrit-PatchSet: 3
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Christopher Copits chrisc...@live.com
Gerrit-Reviewer: Norbert Thiebaud nthieb...@gmail.com

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


Re: Cppcheck false positive? (eg 'PropEntry::operator=' should return 'PropEntry ')

2012-12-27 Thread julien2412
Thank you Lubos for the reference.
So I won't change these since it could generate some regressions if badly
done.

About first report, I meant that = operator is a priori for assignment not
for comparison. So even if the one who did this, did it right (and I suppose
it's the case), it could be a little confusing (and so a little dangerous).
Now perhaps it's confusing only for me and then, sorry for the noise :-)

Julien 



--
View this message in context: 
http://nabble.documentfoundation.org/Cppcheck-false-positive-eg-PropEntry-operator-should-return-PropEntry-tp4026218p4026237.html
Sent from the Dev mailing list archive at Nabble.com.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] fdo#56976 fixes up Arrow import bug

2012-12-27 Thread Lennard Wasserthal (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1492

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/92/1492/1

fdo#56976 fixes up Arrow import bug

Importing an LibreOffice upArrow from an pptx document caused it and several 
custom shapes go down the drain.
That was perhaps a memory violation because the procedure to generate it in 
working memory was missing.
This patch gets you that procedure. Note it cannot be manipulated yet.

Change-Id: I8b9ce3ae1aef7894ab04b9857e90831d715ec1d5
Signed-off-by: Lennard wassert...@nefkom.net
---
M oox/source/drawingml/customshapepresets4.cxx
M oox/source/export/shapes.cxx
2 files changed, 218 insertions(+), 0 deletions(-)



diff --git a/oox/source/drawingml/customshapepresets4.cxx 
b/oox/source/drawingml/customshapepresets4.cxx
index 4aee3a2d..81f7688 100644
--- a/oox/source/drawingml/customshapepresets4.cxx
+++ b/oox/source/drawingml/customshapepresets4.cxx
@@ -1652,6 +1652,222 @@
 return aPropertyMap;
   }
 };
+class ShapeCupArrow : public CustomShapeProvider
+{
+  virtual PropertyMap getProperties()
+  {
+PropertyMap aPropertyMap;
+
+{
+Sequence EnhancedCustomShapeAdjustmentValue  aAdjSequence (2);
+{
+Any aAny ((sal_Int32) 5);
+aAdjSequence [0].Value = aAny;
+aAdjSequence [0].Name = CREATE_OUSTRING (adj1);
+}
+{
+Any aAny ((sal_Int32) 5);
+aAdjSequence [1].Value = aAny;
+aAdjSequence [1].Name = CREATE_OUSTRING (adj2);
+}
+aPropertyMap [PROP_AdjustmentValues] = aAdjSequence;
+}
+{
+static const char *aStrings[] = {
+min(logwidth,logheight),
+10*logheight/?0 ,
+if(0-$0 ,0,if(10-$0 ,$0 ,10)),
+if(0-$1 ,0,if(?1 -$1 ,$1 ,?1 )),
+?0 *?3 /10,
+0+?4 -0,
+logwidth*?2 /20,
+logwidth/2,
+?7 +0-?6 ,
+?7 +?6 -0,
+logwidth/2,
+?8 *?4 /?10 ,
+?5 +0 -?11,
+logwidth,
+logheight
+};
+aPropertyMap [PROP_Equations] = createStringSequence( 
SAL_N_ELEMENTS( aStrings ), aStrings );
+}
+{
+Sequence Sequence  PropertyValue   aPropSequenceSequence (2);
+{
+Sequence PropertyValue  aPropSequence (4);
+{
+aPropSequence [0].Name = CREATE_OUSTRING (Position);
+static const CustomShapeProvider::ParameterPairData aData =
+{
+EnhancedCustomShapeParameterType::EQUATION,
+EnhancedCustomShapeParameterType::EQUATION,
+8, 14
+};
+aPropSequence [0].Value = makeAny 
(createParameterPair(aData));
+}
+{
+aPropSequence [1].Name = CREATE_OUSTRING (RangeXMaximum);
+EnhancedCustomShapeParameter aParameter;
+Any aAny ((sal_Int32) 10);
+aParameter.Value = aAny;
+aParameter.Type = EnhancedCustomShapeParameterType::NORMAL;
+aPropSequence [1].Value = makeAny (aParameter);
+}
+{
+aPropSequence [2].Name = CREATE_OUSTRING (RangeXMinimum);
+EnhancedCustomShapeParameter aParameter;
+Any aAny ((sal_Int32) 0);
+aParameter.Value = aAny;
+aParameter.Type = EnhancedCustomShapeParameterType::NORMAL;
+aPropSequence [2].Value = makeAny (aParameter);
+}
+{
+aPropSequence [3].Name = CREATE_OUSTRING (RefX);
+Any aAny ((sal_Int32) 0);
+aPropSequence [3].Value = makeAny (aAny);
+}
+aPropSequenceSequence [0] = aPropSequence;
+}
+{
+Sequence PropertyValue  aPropSequence (4);
+{
+aPropSequence [0].Name = CREATE_OUSTRING (Position);
+static const CustomShapeProvider::ParameterPairData aData =
+{
+EnhancedCustomShapeParameterType::NORMAL,
+EnhancedCustomShapeParameterType::EQUATION,
+0, 5
+};
+aPropSequence [0].Value = makeAny 
(createParameterPair(aData));
+}
+{
+aPropSequence [1].Name = CREATE_OUSTRING (RangeYMaximum);
+EnhancedCustomShapeParameter aParameter;
+Any aAny ((sal_Int32) 1);
+aParameter.Value = aAny;
+aParameter.Type = EnhancedCustomShapeParameterType::EQUATION;
+aPropSequence [1].Value = makeAny (aParameter);
+}
+{
+aPropSequence [2].Name = CREATE_OUSTRING (RangeYMinimum);
+EnhancedCustomShapeParameter aParameter;
+   

[PATCH] convert redland to gbuild and add to tail_build

2012-12-27 Thread Peter Foley (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1493

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/93/1493/1

convert redland to gbuild and add to tail_build

Change-Id: I953fb203b1a24920f236c2f6e1fd9d82edda1f0f
---
M Module_tail_build.mk
M RepositoryExternal.mk
M RepositoryModule_ooo.mk
M config_host.mk.in
M configure.ac
A redland/ExternalPackage_raptor.mk
A redland/ExternalPackage_rasqal.mk
A redland/ExternalPackage_redland.mk
A redland/ExternalProject_raptor.mk
A redland/ExternalProject_rasqal.mk
A redland/ExternalProject_redland.mk
A redland/Makefile
A redland/Module_redland.mk
A redland/StaticLibrary_raptor.mk
A redland/StaticLibrary_rasqal.mk
A redland/StaticLibrary_rdf.mk
A redland/UnpackedTarball_raptor.mk
A redland/UnpackedTarball_rasqal.mk
A redland/UnpackedTarball_redland.mk
M redland/prj/build.lst
M redland/prj/d.lst
D redland/prj/dmake
D redland/raptor/makefile.mk
R redland/raptor/raptor-1.4.18.aix.patch
R redland/raptor/raptor-1.4.18.autotools.patch
R redland/raptor/raptor-1.4.18.bundled-soname.patch
R redland/raptor/raptor-1.4.18.cross.patch
M redland/raptor/raptor-1.4.18.entities.patch
R redland/raptor/raptor-1.4.18.fixes.patch
R redland/raptor/raptor-1.4.18.legal.patch
M redland/raptor/raptor-1.4.18.libxml.patch
M redland/raptor/raptor-1.4.18.libxslt.patch
R redland/raptor/raptor-1.4.18.mingw.patch
R redland/raptor/raptor-1.4.18.no-soname.patch
R redland/raptor/raptor-1.4.18.ooo_build.patch
D redland/raptor/raptor-1.4.18.patch.dmake
R redland/raptor/raptor-1.4.18.rindex.patch
R redland/raptor/raptor-1.4.18.win32.patch
A redland/raptor/raptor.def
D redland/raptor/raptor2.map
D redland/rasqal/makefile.mk
R redland/rasqal/rasqal-0.9.16.aix.patch
R redland/rasqal/rasqal-0.9.16.autotools.patch
R redland/rasqal/rasqal-0.9.16.bundled-soname.patch
R redland/rasqal/rasqal-0.9.16.legal.patch
R redland/rasqal/rasqal-0.9.16.mingw.patch
R redland/rasqal/rasqal-0.9.16.no-soname.patch
R redland/rasqal/rasqal-0.9.16.ooo_build.patch
D redland/rasqal/rasqal-0.9.16.patch.dmake
R redland/rasqal/rasqal-0.9.16.win32.patch
A redland/rasqal/rasqal.def
D redland/rasqal/rasqal2.map
D redland/redland/makefile.mk
A redland/redland/rdf.def
R redland/redland/redland-1.0.8.aix.patch
R redland/redland/redland-1.0.8.autotools.patch
R redland/redland/redland-1.0.8.bundled-soname.patch
R redland/redland/redland-1.0.8.legal.patch
R redland/redland/redland-1.0.8.mingw.patch
R redland/redland/redland-1.0.8.no-soname.patch
R redland/redland/redland-1.0.8.ooo_build.patch
D redland/redland/redland-1.0.8.patch.dmake
R redland/redland/redland-1.0.8.win32.patch
D redland/redland/redland2.map
D redland/redlandversion.mk
M scp2/InstallModule_ooo.mk
M tail_build/prj/build.lst
M unoxml/Library_unordf.mk
68 files changed, 1,475 insertions(+), 1,849 deletions(-)




-- 
To view, visit https://gerrit.libreoffice.org/1493
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I953fb203b1a24920f236c2f6e1fd9d82edda1f0f
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Peter Foley pefol...@verizon.net

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


Missing sane/sane.h check

2012-12-27 Thread Robert Peters
Hello,

as mentioned in this bug report
https://bugs.freedesktop.org/show_bug.cgi?id=56158 build problems
should be
communicated over the mailing list. So do I.

I never tried to build LibreOffice before on my machine, so that the
configure script had many complaints about
missing dependencies I had to install. Done so, make fetched some
additional stuff from the web and
started to compile.

After a long time make complained about an compiler error because
sane/sane.h was not found. After installing
libsane-dev it continues compiling.

I took a look into configure.ac which actually contains an check for
sane/sane.h. But if I see this correct it will
be only executed if --with-system-sane is passed.


(Please excuse the german output. Forgot to change locale settings
before. But it doesn't say more than I did above.)
---%-
[build CXX] extensions/source/scanner/sane.cxx
[build CXX] extensions/source/scanner/sanedlg.cxx
In file included from
/mnt/private/development/cpp/LibreOffice/extensions/source/scanner/sane.cxx:24:0:
/mnt/private/development/cpp/LibreOffice/extensions/source/scanner/sane.hxx:26:23:
schwerwiegender Fehler: sane/sane.h: Datei oder Verzeichnis nicht
gefunden
Kompilierung beendet.
make[1]: *** 
[/mnt/private/development/cpp/LibreOffice/workdir/unxlngx6.pro/CxxObject/extensions/source/scanner/sane.o]
Fehler 1
---%-

best regards
Robert Peters

PS: Tried to build: c318f3b0224a57102614be0efec4b49c80a3aa82
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] Changes to 'refs/tags/ooo/OOO340_m0'

2012-12-27 Thread Libreoffice Gerrit user
Tag 'ooo/OOO340_m0' created by Jan Holesovsky ke...@suse.cz at 2012-06-27 
14:28 -0700

merged tag ooo/OOO340_m0 from old repositories
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.9 (GNU/Linux)

iEYEABECAAYFAk/rCoMACgkQ3NffDXVGNbFbcgCeK70gY0iguBJR9WmFdLoOn+BO
ZtkAn0Pltj4xyzebthUPIkAr0WIHO9mr
=jT57
-END PGP SIGNATURE-

Changes since ooo/DEV300_m106:
Ivo Hinkelmann (2):
  masterfix DEV300: #i1# SRC_ROOT - SOLARSRC
  masterfix DEV300: #i1# add cairo to build type

Jan Holesovsky (1):
  merged tag ooo/OOO340_m0

Kurt Zenker (12):
  masterfix: #i1# rename sdev300.ini into sooo340.ini for new release 
branch OOO340
  masterfix: #i1# set WITH_LANG to all languages
  #i1# enable crash reporter for MWS build
  OOO340
  masterfix: #i1# adaptions for beta release
  masterfix: #i1# add dependency to sltport
  masterfix: #i1# ns has been renamed to nso (see i117489)
  masterfix: #i1# added -L%SYSBASE%/lib for linux to SOLAREXTRALIB
  masterfix OOO340: #i117696# do not write fo:margin
  masterfix OOO340: #i1# add .pdb and .ilk files to deliver
  masterfix OOO340: #i117701# prevent warning in xmlitem.cxx
  masterfix OOO340: #i1# add dependency to *.src files in 
AllLangResTarget.mk

---
 cairo/cairo-1.8.0.patch|4 
 cairo/prj/build.lst|2 
 instsetoo_native/util/pack.lst |4 
 solenv/config/sdev300.ini  | 3483 
 solenv/config/sooo340.ini  | 3485 +
 solenv/gbuild/AllLangResTarget.mk  |1 
 solenv/gbuild/platform/windows.mk  |2 
 solenv/inc/minor.mk|   10 
 sw/source/filter/xml/xmlitemm.cxx  |2 
 xmloff/source/style/PageMasterExportPropMapper.cxx |   22 
 10 files changed, 3500 insertions(+), 3515 deletions(-)
---
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] Changes to 'refs/tags/ooo/OOO340_m1'

2012-12-27 Thread Libreoffice Gerrit user
Tag 'ooo/OOO340_m1' created by Jan Holesovsky ke...@suse.cz at 2012-06-27 
14:40 -0700

merged tag ooo/OOO340_m1 from old repositories
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.9 (GNU/Linux)

iEYEABECAAYFAk/rDWMACgkQ3NffDXVGNbH1VwCdHAUZZQzPAJxW2K6AG9B/Y6QX
TAsAoJy7XBERMavLg4EeMX1OMnXwtHE+
=hlo2
-END PGP SIGNATURE-

Changes since ooo/OOO340_m0:
Andre Fischer (12):
  impress211: #i115688# Forwarding result of ::Window::Notify().
  impress211: #i114732# Revoke comphelper notification client only when it 
was previously registered.
  impress211: #i116339# Added call to Reschedule to compensate for missing 
yield.
  impress211: #i0# Fixed dragging of slides from navigator to slide 
sorter.
  impress211: #i110990# Fixed slide show spanning multiple displays on 
Windows.
  impress211: #i116911#  Accept -1 as special value for multi monitor 
support.
  impress211: #i110990# Fixed remaining problems with display ids and 
indices.
  impress211: #i110990# Fixed remaining problems with display ids and 
indices.
  impress211: #i110990# Fixed slide show spanning multiple displays on 
Windows.
  impress211: #i110990# Fixed slide show spanning multiple displays on 
Windows.
  impress211: #i110990# Fixed 64bit compiler problem.
  impress211: #i110990# Increased version number (micro) of presenter 
screen extension to 1.1.1.

Armin Le Grand (5):
  aw084: #i112978# use GetAllMarkedBoundRect instead of GetAllMarkedRect to 
get fat line support
  aw084: #i116802# Removing DBG_UNHANDLED_EXCEPTION since there is a 
valuable alternative alailable and not a general error happening
  aw084: #i108052# Added code to mimic old behaviour and call user layout 
link when empty paragraph is rendered
  aw084: resync to DEV300_m104
  aw084: resync to DEV300_m104

Christian Lippka ORACLE (32):
  impressdefaults1: #i115996# change default bullet symbol order from 'Oo-' 
in 'O-O-O' inside text objects
  impress210: #i116846# adding uncommited changes from cws impressdefautls1
  impress210: #i116846# adding uncommited changes from cws impressdefautls1
  impress210: #i116846# adding uncommited changes from cws impressdefautls1
  impress210: #i116846# added missing commits from cws impressdefaults1
  impress210: merge
  impress210: merge
  impress210: #i50899# clean up fill attributes if fill style changes
  impress210: #i50899# clean up fill attributes if fill style changes
  impress210: #i116847# added CTRL-ALT-C as shortcut for inserting comments 
in calc
  impress210: #i41995# fixed distinct shape and page id
  impress210: #i41995# fixed import of path animation from sxi files
  impress210: #i41995# fixed import of path animation from sxi files
  impress210: #i41995# fixed import of path animation from sxi files
  impress210: #i117133# put new drawing layer fill and stroke styles in 
pool only for newly created documents
  impress210: #i117133# put new drawing layer fill and stroke styles in 
pool only for newly created documents
  impress210: #i117133# put new drawing layer fill and stroke styles in 
pool only for newly created documents
  impress210: #i117133# put new drawing layer fill and stroke styles in 
pool only for newly created documents
  impress210: #i117133# put new drawing layer fill and stroke styles in 
pool only for newly created documents
  impress210: #i117319# disconnect and reconnect to table style on change 
model in SdrTableObjImpl
  impress210: merge
  impress210: merge
  impress210: merge
  impress210: merge
  impress210: merge
  impress210: merge
  impress210: merge
  impress210: merge
  impress210: #i41995# using view contact to get bound rect for old path 
animation import
  impress210: #i41995# using view contact to get bound rect for old path 
animation import
  impress210: #i41995# using view contact to get bound rect for old path 
animation import
  impress210: fixed solaris compile warning

Daniel Rentz [dr] (20):
  dr80: #i164410# optimized cell allocation in 
XCellRangeData::setDataArray() to improve performance of import filters
  dr80: #i117388# do not try to access nonexisting document
  dr80: rebase to DEV300_m102
  dr80: rebase to DEV300_m102
  dr80: rebase to DEV300_m102
  dr80: rebase to DEV300_m102
  dr80: #i117418# compiler warning: OptValueT::maValue needs to be 
value-initializedinc
  dr80: #i117392# initialize VBAGlobals object if single Basic module is in 
VBA mode, do not expect existing parent sheet in implementation of 
Excel.Application.ActiveCell
  dr80: #i117392# initialize VBAGlobals object if single Basic module is in 
VBA mode, do not expect existing parent sheet in implementation of 
Excel.Application.ActiveCell
  dr80: branch merge
  dr80: branch merge
  dr80: #i117506# byvalue-byref
  dr80: #i117511# remove some 

[Libreoffice-bugs] [Bug 55079] EDITING: program crashes

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55079

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

   What|Removed |Added

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

--- Comment #4 from Julien Nabet serval2...@yahoo.fr ---
No crash anymore so WFM.
Stefan: about the speed, don't hesitate to test with latest LO version (3.6.4)
and fill a new bug if you still notice slowliness

-- 
You are receiving this mail because:
You 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 55124] : crash on start

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55124

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

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INVALID

--- Comment #2 from Julien Nabet serval2...@yahoo.fr ---
No feedback since 3 months, put it as INVALID

Benoît: don't hesitate to reopen this tracker if you still reproduce the
problem with last LO version (3.6.4) and a brand new LO profile (see
https://wiki.documentfoundation.org/UserProfile)

-- 
You are receiving this mail because:
You 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 54618] : Crash at start

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54618

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

   What|Removed |Added

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

--- Comment #5 from Julien Nabet serval2...@yahoo.fr ---
No feedback since 3 months, put it as WFM
Pierre-Olivier: don't hesitate to reopen this tracker if you still reproduce
the problem with last LO version (3.6.4) and a brand new LO profile (see
https://wiki.documentfoundation.org/UserProfile)

-- 
You are receiving this mail because:
You 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 54415] Correction of textes in english -LibreOffice 3.5.2.2 is crashing, restore is possible

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54415

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

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |WORKSFORME
 CC||serval2...@yahoo.fr

--- Comment #2 from Julien Nabet serval2...@yahoo.fr ---
No feedback since 3 months, put it as WFM

lammler: don't hesitate to reopen this tracker if you still reproduce the
problem with last LO version (3.6.4) and a brand new LO profile (see
https://wiki.documentfoundation.org/UserProfile)

-- 
You are receiving this mail because:
You 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 54656] Inserted Columns do not evaluate formulas

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54656

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

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INVALID

--- Comment #4 from Julien Nabet serval2...@yahoo.fr ---
No feedback since 3 months, put it as INVALID

Manish: don't hesitate to reopen this tracker if you still reproduce the
problem with last LO version (3.6.4) and a brand new LO profile (see
https://wiki.documentfoundation.org/UserProfile). Also, indicate your
environment (Windows, MacOs, Linux) and version.

-- 
You are receiving this mail because:
You 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 58160] Program not starts after installation

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58160

--- Comment #3 from Zoltán Reizinger zreizin...@hdsnet.hu ---
I installed beta2 and program starts correctly.

-- 
You are receiving this mail because:
You 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 54720] FILESAVE: System crashes and becomes unresponsive on saving to xslx format

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54720

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

   What|Removed |Added

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

--- Comment #1 from Julien Nabet serval2...@yahoo.fr ---
On pc Debian x86-64 with 3.6 sources updated yesterday, I don't reproduce this.

JonStam:
did you try to rename your LO profile (see
https://wiki.documentfoundation.org/UserProfile)?
Above all, do you reproduce this with a newer LO version (3.6.4 for example)?

-- 
You are receiving this mail because:
You 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 48114] EDITING: Spell Grammar dialog in a loop after Resume

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48114

--- Comment #1 from A stgohi-lob...@yahoo.de ---
not reproducible with LO 3.6.4.3. (Win7 Home, 64bit)

Please inform about the necessary steps if this bug still exists.

-- 
You are receiving this mail because:
You 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 58796] New: : Query to Oracle database in Base / Missing function

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58796

  Priority: medium
Bug ID: 58796
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: : Query to Oracle database in Base / Missing function
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: mr...@mckanes.com
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 3.6.4.3 release
 Component: Database
   Product: LibreOffice

Problem description:

I need to use Oracle database in LibreOffice Calc. I added the library
ojdbc6.jar and configured the access and create some query in Base.. It works
with simple select query!

But some query don't works:

When i want retrieve the system date: SELECT TO_CHAR(sysdate, '') FROM
DUAL;

Statut SQL: 42000 Code d'erreur: 904 / ORA-00904: sysdate :
identificateur non valide

Or if i use ROWNUM to limit result.

Statut SQL: 42000 Code d'erreur: 904 / ORA-00904: ROWNUM : identificateur
non valide


All query works if direcly executed in sqlplus tool from Oracle.

Thanks in advance!
Operating System: Ubuntu
Version: 3.6.4.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 43585] FORMATTING: Crash when we modify the second or lewel level indentation line in the mask mode

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43585

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

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INVALID
 CC||serval2...@yahoo.fr

--- Comment #5 from Julien Nabet serval2...@yahoo.fr ---
No feedback since a year! Put it as INVALID

t.guilbert: don't hesitate to reopen this tracker if you still reproduce the
problem with last LO version (3.6.4) and a brand new LO profile (see
https://wiki.documentfoundation.org/UserProfile)
Also, give a detailed step by step process with screenshots if possibles as
requested by bfoman because it's not very clear.

-- 
You are receiving this mail because:
You 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 50917] Header keeps disappearing after re-opening a file saved in .doc format

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50917

--- Comment #1 from A stgohi-lob...@yahoo.de ---
not reproducible with LO 3.6.4.3. (Win7 Home, 64bit)

-- 
You are receiving this mail because:
You 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 58797] New: Date field format contain excess quotation mark in Hungarian version

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58797

  Priority: medium
Bug ID: 58797
  Keywords: l10n
CC: tima...@gmail.com
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Date field format contain excess quotation mark in
Hungarian version
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: zreizin...@hdsnet.hu
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.0.0.0.beta2
 Component: Localization
   Product: LibreOffice

Created attachment 72170
  -- https://bugs.freedesktop.org/attachment.cgi?id=72170action=edit
example file, with fields

Date field format contain excess quotation mark in Hungarian version, in some
date format. See attached example file.

This happens in writer, and reports in Base, where I tested.

-- 
You are receiving this mail because:
You 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 54472] VIEWING: Equations Objects

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54472

A stgohi-lob...@yahoo.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from A stgohi-lob...@yahoo.de ---
reproducible with LO 3.6.4.3. (Win7 Home, 64bit)

-- 
You are receiving this mail because:
You 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 43054] Broken odp crashes Impress

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43054

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

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #4 from Julien Nabet serval2...@yahoo.fr ---
On pc Debian x86-64 with master sources and 4.0 updated yesterday, I don't
reproduce the crash. But only part of the slide can be viewed.
I noticed lots of these kinds of logs too on console:
warn:svx.sdr:9433:1:/home/julien/compile-libreoffice/libo_4_0/svx/source/svdraw/svdobj.cxx:2935:
SdrObject::impl_setUnoShape: still having impl. pointer to dead object!
warn:legacy.osl:9433:1:/home/julien/compile-libreoffice/libo_4_0/sd/source/ui/slidesorter/view/SlsPageObjectPainter.cxx:90:
OSL_ASSERT: mpPageObjectLayouter

-- 
You are receiving this mail because:
You 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 43054] Broken odp crashes Impress

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43054

--- Comment #5 from Julien Nabet serval2...@yahoo.fr ---
Created attachment 72171
  -- https://bugs.freedesktop.org/attachment.cgi?id=72171action=edit
bt + console logs on 3.6

I reproduced a crash with 3.6 sources updated yesterday.

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


[Libreoffice-bugs] [Bug 43054] Broken odp crashes Impress

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43054

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

   What|Removed |Added

 CC||r...@novell.com,
   ||tbehr...@suse.com

--- Comment #6 from Julien Nabet serval2...@yahoo.fr ---
Thorsten, Rodo: had a crash with 3.6 but none from 4.0, is this tracker still
relevant?

-- 
You are receiving this mail because:
You 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 58798] New: Draw - Unit of Measurement always reset to Inch

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58798

  Priority: medium
Bug ID: 58798
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Draw - Unit of Measurement always reset to Inch
  Severity: normal
Classification: Unclassified
OS: Windows (All)
  Reporter: stephenletter...@gmail.com
  Hardware: Other
Status: UNCONFIRMED
   Version: 3.6.4.3 release
 Component: Drawing
   Product: LibreOffice

How to reproduce:

Tools - Options -
Language Settings - Language:
User Interface: English (USA)
Locale Setting: English (USA)
Default Language of Documents: Western: English (USA)
Asian: Chinese (Traditional)

Set Draw-General-Unit of Measurement to Centimeter, close, re-open Draw. Unit
of Mesaurement reset to Inch automatically.

Writer, though have similar Unit of Measurement settings, does not have the
above problem.

Tested Platform:
Windows 7 64bit Home Edition (US English)

Affected Libreoffice versions:
3.6.4.3 (tested)
4.00 beta 2 (tested)

Reference - Similar Problem:
bug 57915

-- 
You are receiving this mail because:
You 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 54578] PRINTING: During Black white printing, script locks up system

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54578

--- Comment #1 from A stgohi-lob...@yahoo.de ---
not reproducible with LO 3.6.4.3. (Win7 Home, 64bit)

-- 
You are receiving this mail because:
You 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 57915] Impress - Setting Ruler Visible reset Unit of Measurement to Default.

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=57915

--- Comment #4 from Stephen stephenletter...@gmail.com ---
@Thankyou Cuyper. I don't know the version means first version.

Additional Information:

Grid is also affected.

How to reproduce:
Set View-Display-Rulers Visible to Off (uncheck the box) while Grid-Visible
Grid to On (check the box). When close and re-open Impress again, Grid
disappears even Grid-Visible Grid is still On (box still checked)

Tested Platform:
Windows 7 64bit Home Edition (US English)

Affected Libreoffice versions:
3.6.4.3
4.00 beta 2

Same Settings as my first post.

Reference - Similar problem:
bug 58798

-- 
You are receiving this mail because:
You 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 36635] WMV/WMA missing in All movie and sound files filter of insert movie and sound command

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=36635

--- Comment #4 from Gerry gerry.trep...@googlemail.com ---
Sending a ping with regards to this IMHO *very very easy to fix* bug. Issue in
Version 3.6.2.2 (Build ID: 360m1(Build:2)) Ubuntu is still the same:

Issue: The WMV filter works perfectly, but the user does not see the WMV/WMA
files when using the Insert-Movie Sound dialog. The user only sees WMV/WMA
files after choosing All files (*).

Solution: Please add WMV and WMA to the list of supported file formats, so that
they are displayed in the list of the Movie Sound dialog.

-- 
You are receiving this mail because:
You 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 54594] Formatting

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54594

--- Comment #1 from A stgohi-lob...@yahoo.de ---
Could you please provide more information how to reproduce this bug.

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


[Libreoffice-bugs] [Bug 58417] BASIC: Libreoffice 4.0 crashes on startup on Ubuntu 12.10 64bit

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58417

A.S. as...@isa.upv.es changed:

   What|Removed |Added

 Status|NEEDINFO|REOPENED

--- Comment #6 from A.S. as...@isa.upv.es ---
I confirm the issue is still present with night build 2012-12-26_23.55.49,
installed from dev-builds.libreoffice.org.

I also confirm this bug is a duplicate of bug 58092, which also refers to
Ubuntu 12.10 x64 not able to start LO. As I am a non-developer novice and I
don't know what consequences duplicate things have (and no activity has been
present in 58092 bug since 2 weeks), I leave to libreoffice-bugs people taking
the right actions.

LO crashes both with and without the Spanish language pack installed.

-- 
You are receiving this mail because:
You 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 48114] EDITING: Spell Grammar dialog in a loop after Resume

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48114

--- Comment #2 from Urmas davian...@gmail.com ---
I happened with master too, but I haven't got how to reproduce 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 58092] : Does not start

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58092

--- Comment #7 from A.S. as...@isa.upv.es ---
Likely duplicate of bug 58417.

-- 
You are receiving this mail because:
You 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 54642] FILEOPEN: wrong layout in .doc generated by crystal reports

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54642

A stgohi-lob...@yahoo.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from A stgohi-lob...@yahoo.de ---
can not reproduce with LO 3.6.4.3. (Win7 Home, 64bit) in that way, but in the
first table you see in WORD 2007 a double line, but in LO you can only see
fragments of it.  In addition, the word Maandag is displaced, so that you can
not see the whole character M, but which you can see correctly in WORD 2007.

-- 
You are receiving this mail because:
You 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 58798] Draw - Unit of Measurement always reset to Inch

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58798

--- Comment #1 from Stephen stephenletter...@gmail.com ---
Note:
If I directly edit and save the default template using Centimeter, Draw opens a
new drawing in Centimeter, but if I check Options-Draw-View-Display-Rulers
Visible to Off (uncheck the box), click OK button, and then check Rulers
Visible to On again (check the box). Draw resets all units to Inch again.

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


[Libreoffice-bugs] [Bug 57915] Impress - Setting Ruler Visible reset Unit of Measurement to Default.

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=57915

--- Comment #5 from Stephen stephenletter...@gmail.com ---
Note:
If I directly edit and save the default template using Centimeter, Impress
opens a new presentation in Centimeter, but if I check
Options-Impress-View-Display-Rulers Visible to Off (uncheck the box), click
OK button, and then check Rulers Visible to On again (check the box).
Impress resets all units to Inch again.

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


[Libreoffice-bugs] [Bug 54653] FORMATTING: Incorrect spacing in multiline right justified cells

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54653

--- Comment #1 from A stgohi-lob...@yahoo.de ---
Reproducible with LO 3.6.4.3. (Win7 Home, 64bit), but I do not think that this
is a bug, because for the example cell description you have a character (=
space) between the two words.  If wrap automatically is activated then the text
will be wrapped after the space and if it is right aligned, then that space
will be kept and leads to this example in the attachment.
Discussed can maybe if in such a case the text should already be wrapped before
the space.  But it could be that there are reasons against breaking the general
rule of the taking into account a space as a normal character.

-- 
You are receiving this mail because:
You 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 58612] copy/paste in search/replace does not function.

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58612

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

   What|Removed |Added

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

--- Comment #2 from Julien Nabet serval2...@yahoo.fr ---
Henry: following the email you sent me, put it as WFM.
Thank you for your feedback.

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


[Libreoffice-bugs] [Bug 55942] UI: Problem with the English(GB) help pack file 'Lib0_3.6.2_Win_x86_helppack_en-GB.msi'

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55942

--- Comment #1 from Peter Lusmore pe...@lusmore.org.uk ---
Can confirm that this happens with LibO 4 beta 2 vesion and Norton 2013 as well

-- 
You are receiving this mail because:
You 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 54684] FILEOPEN Anchored pictures jump to second page

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54684

A stgohi-lob...@yahoo.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from A stgohi-lob...@yahoo.de ---
reproducible with LO 3.6.4.3. (Win7 Home, 64bit)

in WORD 2007 the doc document is shown correctly on one page as in the pdf
attachment, but in LO it will be shown on two pages

-- 
You are receiving this mail because:
You 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 58779] Ctrl+P. print dialog not shown. prints file directly

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58779

--- Comment #9 from tommy27 ba...@quipo.it ---
Created attachment 72175
  -- https://bugs.freedesktop.org/attachment.cgi?id=72175action=edit
File/Print button

still confirming the bug after resetting the user profile. LOdev beta2 on Vista
64bit.

the Print button you find under the File menu and which is assigned to the
Ctrl+P hotkey should open the Print dialog, while still prints directly the
file.

basically the Print button now behaves exactly as the Print directly
button.

they have the same icon but should have different effects... 
read description under: Tools/Customize/Menus/Add/Documents

-- 
You are receiving this mail because:
You 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 58160] Program not starts after installation

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58160

VX vangeli...@aol.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #4 from VX vangeli...@aol.com ---
I can confirm this bug for Windows 7 64 bit and the current daily build of LO.

1. Before the installation I removed LO 4.0.0.0 beta 2 with Add/Remove programs
from the Windows Control Panel.
2. Than I downloaded and installed the daily build from:
http://dev-builds.libreoffice.org/daily/libreoffice-4-0/Win-x86@6/2012-12-27_00.59.31/
The .msi package was used to install on Windows 7 64 bit (Polish UI).
3. After successful installation I got an error message very similar to the one
reported in Comment no. 2.
4. I decided to run 'LOdev4.0' shortcut as Admin and then I got the window with
the following error message (it's in Polish, but here you go in English):

soffice.bin - System error
You can't run this application, because i18nutilMSC.dll hasn't been found.
Try to reinstall the application to fix the issue.'

The window with the error message appears every time I'm trying to run
'LOdev4.0'
I haven't encountered such issues with any version of LO 3.x.x.
LO 4.0.0.0 beta 1 and beta 2 didn't have this error too.

-- 
You are receiving this mail because:
You 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 58433] Wrong open file .odt with MS

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58433

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

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

--- Comment #8 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
NOTOURBUG due to discussion results.

-- 
You are receiving this mail because:
You 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 58793] FILEOPEN: Crash when trying to open attachment fdo#58277

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58793

Joren De Cuyper joren.libreoff...@telenet.be changed:

   What|Removed |Added

 CC||joren.libreoffice@telenet.b
   ||e

--- Comment #2 from Joren De Cuyper joren.libreoff...@telenet.be ---
Can't reproduce using LO 4.1.0.0.alpha0+ (Build ID:
de9475756effa8102cc4090db8d03393a02fdc6)
TinderBox: MacOSX-Intel@1-built_no-moz_on_10.6.8, Branch:master, Time:
2012-12-25_01:01:53

Mac OSX 10.8.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 58482] PDF Export: the all Bitmap background can be seen behind a shape when a transparency gradient is used on it

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58482

cedrc...@gmail.com changed:

   What|Removed |Added

Version|3.6.4.3 release |3.4.2 release

--- Comment #8 from cedrc...@gmail.com ---
In 3.3.4, the shape was respected but crenelated.
In 3.4.2, the Bitmap background was extending beyond the edges of the figure
but as a octagon rather than as a rectangle like now.

Before 4.0.0.0.beta1, I could see this bug on Windows and Linux, now I can only
see it on Windows, so, I think we can say this is a new bug from
4.0.0.0.beta1 (inconsistency between platforms).
Maybe the correction will be applied on Windows for the Release version.

-- 
You are receiving this mail because:
You 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 57894] Implement OS native highlighting on each component

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=57894

Roman Eisele b...@eikota.de changed:

   What|Removed |Added

   Hardware|Other   |All
   See Also|https://bugs.freedesktop.or |
   |g/show_bug.cgi?id=55876 |
  Component|Libreoffice |UI

--- Comment #6 from Roman Eisele b...@eikota.de ---
 I agree. LibreOffice should use the native highlighting style of every
 platform, and remove these highlighting customization options that it
 currently has.

I agree completely. Using the native highlighting method on every platform
would make LibreOffice *feel* native, and would make it immeditaly feel
familiar and handy to new users. So, while on the *rational* side this is not
one of the most urgent enhancement requests, it is of considerable importance
on the *emotional* side.

A simple example of what I mean by rational/emotional importance:
I have resisted for a long time to use GIMP, not because it would not provide
most of the features I need for everyday imaging work, but simply because it
felt so “clumsy” to me; I was far too familiar (a) to the native Mac OS (X) UI
and
(b) to Photoshop. Now GIMP 2.8 has got a semi-native Mac OS X UI, and suddenly
I begin to feel comfortable with it, and actually to use it ...

Because of this personal experience I think it is really important to make the
UI feel native and familiar to the users, especially the simple basics of the
UI, and the highlighting is definitely a part of these basics.

-- 
You are receiving this mail because:
You 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 55876] Improve the look of selected text

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55876

Roman Eisele b...@eikota.de changed:

   What|Removed |Added

   See Also|https://bugs.freedesktop.or |
   |g/show_bug.cgi?id=57894 |

-- 
You are receiving this mail because:
You 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 58793] FILEOPEN: Crash when trying to open attachment fdo#58277

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58793

--- Comment #3 from Joren De Cuyper joren.libreoff...@telenet.be ---
Still can't reproduce using LO 4.1.0.0.alpha0+ (Build ID:
699132c269a6c6d9e815fc582e2e6a106e46923)
TinderBox: MacOSX-Intel@1-built_no-moz_on_10.6.8, Branch:master, Time:
2012-12-27_01:05:51

So, Linux only for the moment.

-- 
You are receiving this mail because:
You 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 58740] soffice.bin: segfault in libuno_sal.so.3

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58740

--- Comment #2 from akf...@hotmail.co.jp ---
Generating frequency is irregular.
The file is not opening one. 
segfault is about 13 times per day.

Only, soffice.bin is monitoring pid and port 8100 by monit 5.1.1, check
intervals 5 sec.
And soffice.bin restart to the degree of segfault.

It does not crash, if port 8100 is not accessed.

-- 
You are receiving this mail because:
You 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 58779] Ctrl+P. print dialog not shown. prints file directly

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58779

mariosv mari...@miguelangel.mobi changed:

   What|Removed |Added

 Status|REOPENED|NEW

--- Comment #10 from mariosv mari...@miguelangel.mobi ---
I can reproduce now with the latest version
Win7x64 Ultimate
Version 4.0.0.0.beta2+ (Build ID: 350ae8294a8df78403fd8cdce56b9aeb8178e13)

But only in writer, spreadsheet/draw/impress open the box with Ctrl+P.

-- 
You are receiving this mail because:
You 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 58760] EDITING: CRASH when Insert Indexes and Tables Indexes and Tables...

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58760

--- Comment #9 from manj_k courrier.oou.fr@googlemail.com ---
@Julien Nabet
(In reply to comment #6)

All my tested builds are the official tinderbox builds on
→ http://dev-builds.libreoffice.org/daily/master/Win-x86@6/ .

-- 
You are receiving this mail because:
You 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 56268] : Comments are shifting when a partial row is added or deleted.

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56268

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

  Attachment #68895|text/plain  |image/jpeg
  mime type||

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


[Libreoffice-bugs] [Bug 58760] EDITING: CRASH when Insert Indexes and Tables Indexes and Tables...

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58760

--- Comment #10 from manj_k courrier.oou.fr@googlemail.com ---
@Rainer Bielefeld
(In reply to comment #7):

Thanks for confirming.

'Bug 57142 - Recovery does not work after particular crash' doesn't occur
consistently with this command, and the same document. Sometimes it has been
recovered with success, and sometimes the recovery failed.

-- 
You are receiving this mail because:
You 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 56268] EDITING: Comments shifting when a partial row is inserted or deleted.

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56268

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Whiteboard|BSA |BSA  (target:3.6.4.3)
 Resolution|--- |WORKSFORME
 CC||LibreOffice@bielefeldundbus
   ||s.de
Summary|: Comments are shifting |EDITING: Comments shifting
   |when a partial row is added |when a partial row is
   |or deleted. |inserted or deleted.

--- Comment #2 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
Was [Reproducible] with Server Installation of LibreOffice 3.6.2.1 release” 
English UI/ German Locale [Build-ID:  da8c1e6] on German WIN7 Home Premium
(64bit) 

But now works fine with with LibreOffice 3.6.4.3 German UI/ German Locale
[Build-ID: 2ef5aff] {pull date 2012-11-28} on German WIN7 Home Premium (64bit) 

and

parallel installation of  LOdev  4.0.0.0.beta2   -  GERMAN UI / German Locale 
[Build ID: 4104d660979c57e1160b5135634f732918460a0)]  {tinderbox: @6, pull
time 2012-12-20} on German WIN7 Home Premium (64bit) with separate /4 User
Profile for Master Branch

@thanasis2:
Tank you for your attention. Please feel free to reeopen this bug if you still
find tis Bug in 3.6.4.3 or later.

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


[Libreoffice-bugs] [Bug 58802] New: Font not

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58802

  Priority: medium
Bug ID: 58802
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Font not
  Severity: normal
Classification: Unclassified
OS: Mac OS X (All)
  Reporter: jost.schu...@web.de
  Hardware: x86 (IA32)
Status: NEW
   Version: 3.6.4.3 release
 Component: Libreoffice
   Product: LibreOffice

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


[Libreoffice-bugs] [Bug 58802] Font after installation not available

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58802

jost jost.schu...@web.de changed:

   What|Removed |Added

Summary|Font not|Font after installation not
   ||available

--- Comment #1 from jost jost.schu...@web.de ---
After installation of two fonts, namely Fontin Sans and Fontin
(http://www.exljbris.com/fontin.html), only Fontin Sans fonts are available in
LO. Checking in other applications like TextEdit, both fonts show up in font
browser.

-- 
You are receiving this mail because:
You 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 58779] Ctrl+P. print dialog not shown. prints file directly

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58779

--- Comment #11 from tommy27 ba...@quipo.it ---
(In reply to comment #10)
 I can reproduce now with the latest version
 But only in writer, spreadsheet/draw/impress open the box with Ctrl+P.

that's true. the Ctrl+P bug affects only Writer.

-- 
You are receiving this mail because:
You 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 58779] Ctrl+P. print dialog not shown. prints file directly

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58779

--- Comment #12 from john.pr...@cantab.net ---
I cannot reproduce this bug in 4.0beta2 running on Windows XP, so maybe not all
windows versions affected.

-- 
You are receiving this mail because:
You 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 38840] add coverage analysis to unit tests

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38840

John Smith lbalba...@gmail.com changed:

   What|Removed |Added

URL|http://dev-builds.libreoffi |https://wiki.documentfounda
   |ce.org/lcov_reports/|tion.org/Development/Lcov

-- 
You are receiving this mail because:
You 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 39596] use the CLang++ static analyser to find bugs

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39596

John Smith lbalba...@gmail.com changed:

   What|Removed |Added

URL|http://dev-builds.libreoffi |https://wiki.documentfounda
   |ce.org/clang_reports/   |tion.org/Development/Clang

-- 
You are receiving this mail because:
You 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 50833] SLIDESHOW: Custom Animations doesn't repeat

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50833

cedrc...@gmail.com changed:

   What|Removed |Added

 OS|Linux (All) |All
 CC||cedrc...@gmail.com

--- Comment #8 from cedrc...@gmail.com ---
As for LibreOffice 4.0.0.0.beta2 (Build ID:
4104d660979c57e1160b5135634f732918460a0), the animation can be repeated up to
10 times and it works.
But the other options Until next click and Until end of slide still 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 58779] Ctrl+P. print dialog not shown. prints file directly

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58779

--- Comment #13 from mariosv mari...@miguelangel.mobi ---
Hi @John.pratt,
is new for me in:
4.0.0.0.beta2+ (Build ID: 350ae8294a8df78403fd8cdce56b9aeb8178e13)

but not was in:
4.0.0.0.beta2 (Build ID: 4104d660979c57e1160b5135634f732918460a0)

-- 
You are receiving this mail because:
You 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 54246] Calc filtration by color

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54246

Sören scren2...@yahoo.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #2 from Sören scren2...@yahoo.de ---
Enhancement, marked as NEW, as the function is not implemented at the moment

-- 
You are receiving this mail because:
You 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 54255] MATCH does not find empty cells

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54255

Sören scren2...@yahoo.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from Sören scren2...@yahoo.de ---
I can confirm the bug in
Version 4.0.0.0.beta2 (Build ID: 4104d660979c57e1160b5135634f732918460a0)
on Ubuntu 12.04 (x86)

-- 
You are receiving this mail because:
You 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 58794] FORMATTING: loss of information from column when multiple columns are created and insert footnote

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58794

Joren De Cuyper joren.libreoff...@telenet.be changed:

   What|Removed |Added

 OS|Linux (All) |All
 Status|UNCONFIRMED |NEW
   Severity|normal  |blocker
   Priority|medium  |highest
 CC||joren.libreoffice@telenet.b
   ||e
Version|4.1.0.0.alpha0+ Master  |3.6.4.3 release
 Ever confirmed|0   |1

--- Comment #1 from Joren De Cuyper joren.libreoff...@telenet.be ---
Thanks for reporting

Can reproduce with LO 4.1.0.0.alpha0+ (Build ID:
699132c269a6c6d9e815fc582e2e6a106e46923)
TinderBox: MacOSX-Intel@1-built_no-moz_on_10.6.8, Branch:master, Time:
2012-12-27_01:05:51

With Mac OS X - not linux only - platforms 'all'

Also REPRODUCIBLE with:

4.0.0.0.beta2 (Bouw-id: 4104d660979c57e1160b5135634f732918460a0)
TinderBox: MacOSX TDF Release, Branch:libreoffice-4-0, Time:
2012-12-18_17:13:13

4.0.0.0.beta1+ (Build ID: f4a1520c58f8bbbaf5027222c071374afb55961)
TinderBox: MacOSX-Intel@27-OSX_10.7.0-gcc_4.2.1_llvm, Branch:libreoffice-4-0,
Time: 2012-12-16_21:58:26

Version 3.6.4.3 (Build ID: 2ef5aff) - set Libreoffice bug version to this
version.

Following the 'Prioritizing bugs flowchart
(https://wiki.documentfoundation.org/images/0/06/Prioritizing_Bugs_Flowchart.jpg)'
I set importance to HIGHEST and BLOCKER.
Can't find any duplicate/relevant bugs so far.

-- 
You are receiving this mail because:
You 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 54286] EDITING: paste special doesn't operate on multiple selection

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54286

Sören scren2...@yahoo.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #2 from Sören scren2...@yahoo.de ---
It works for me in
Version 4.0.0.0.beta2 (Build ID: 4104d660979c57e1160b5135634f732918460a0)
on Ubuntu 12.04 (x86)

Writing some data in a row, marking the whole row and then special pasting
(with Transpose) it in a column, gives the expected result. Column to row
gives the There is not enough space on the sheet to insert here.-error, but
this seems expected, as rows normally are shorter than columns are high.
(Although it might be nice to have a possibility of truncating empty cells at
the end of the range)

-- 
You are receiving this mail because:
You 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 54309] EDITING: CRASH if in middle of table a field of columns and rows are marked to insert new cells /shift right

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54309

Sören scren2...@yahoo.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #4 from Sören scren2...@yahoo.de ---
The original poster says that the bug is fixed in 3.6.2, and we can't reproduce
it without a document, so I mark is as RESOLVED. Please reopen if it occurs
again.

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


[Libreoffice-bugs] [Bug 58794] FORMATTING: loss of information from column when multiple columns are created and insert footnote

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58794

Joren De Cuyper joren.libreoff...@telenet.be changed:

   What|Removed |Added

Version|3.6.4.3 release |3.5.7.2 release

--- Comment #2 from Joren De Cuyper joren.libreoff...@telenet.be ---
Also reproducable using LibreOffice 3.5.7.2 
Build ID: 3215f89-f603614-ab984f2-7348103-1225a5b

WORKAROUND: first insert - manual brake... - column break

-- 
You are receiving this mail because:
You 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 50193] FILESAVE particular .xls (MSO 97) takes long time

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50193

--- Comment #7 from Matthieu matthieu@capgemini.com ---
Hello,

We have this bug on LibreOffice 3.5.7.2, 

Do you have a patch for this version?

Thank you.

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


[Libreoffice-bugs] [Bug 58805] New: Report builder: Wrong date and time in report header footer

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58805

  Priority: medium
Bug ID: 58805
  Keywords: regression
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Report builder: Wrong date and time in report header
footer
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: zreizin...@hdsnet.hu
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.0.0.0.beta2
 Component: Database
   Product: LibreOffice

The report builder report shows wrong (1899-12-30) date instead of Today(), and
time 00:00 instead of Now() current value.

See attached file, open report for edit, I put date/time into header/footer and
details area, the fields in Details, shows correct date/time values.

This error is a reincarnation of some old bugs from report builder past. 

This not happens in LibO 3.6.4, regression.

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


[Libreoffice-bugs] [Bug 47223] Link from calc to writer with relative-path

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=47223

cébé cyril.be...@laposte.net changed:

   What|Removed |Added

 OS|All |Windows (All)
   Severity|minor   |major
Version|3.3.4 release   |3.6.4.3 release

--- Comment #5 from cébé cyril.be...@laposte.net ---
Hi,

Same problem with 3.6.4 : I have to specify file:.

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


[Libreoffice-bugs] [Bug 58807] New: BASIC: macro doesn't beep

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58807

  Priority: medium
Bug ID: 58807
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: BASIC: macro doesn't beep
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: paolo_debort...@yahoo.com
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 4.0.0.0.beta2
 Component: BASIC
   Product: LibreOffice

the  macro 

Sub ExampleBeep

beep

beep

beep

end sub

doesn't produce ay sound.
Operating System: Ubuntu
Version: 4.0.0.0.beta2

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


[Libreoffice-bugs] [Bug 58649] EDITING: Overflowing text on image (regression)

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58649

webofht-libreofficebugs...@yahoo.com.hk changed:

   What|Removed |Added

 CC||webofht-libreofficebugs002@
   ||yahoo.com.hk

--- Comment #2 from webofht-libreofficebugs...@yahoo.com.hk ---
Confirmation:
I definitely agree with Marco Menardi that this issue does not exist in
LibreOffice 4.0.0.0 Beta2.

Page 12 of the document is okay.

Regards,
C. H. D.

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


[Libreoffice-bugs] [Bug 46116] Handling of multiple instances of LO applications in the Unity Launcher

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46116

--- Comment #11 from pharmankur pharman...@gmail.com ---
Created attachment 72186
  -- https://bugs.freedesktop.org/attachment.cgi?id=72186action=edit
libreoffice launcher issue in unity

libreoffice launcher issue is still there in ubuntu12.10 

here is my screenshot showing the 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 33617] lines created in report builder are not shown in report

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=33617

marco braida marcobra.ubu...@gmail.com changed:

   What|Removed |Added

Version|3.4.3 release   |4.0.0.0.beta2

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


[Libreoffice-bugs] [Bug 58808] New: Mail Merge Wizard quits when Print Preview is shown

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58808

  Priority: medium
Bug ID: 58808
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Mail Merge Wizard quits when Print Preview is shown
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: h_tak...@hotmail.co.jp
  Hardware: Other
Status: UNCONFIRMED
   Version: unspecified
 Component: Writer
   Product: LibreOffice

When I show the Print Preview at Step 6 or 7, the Mail Merge Wizard quits
itself.
Especially at Step 7, the document is left with all the data inserted to the
fields. Meaning, there is no database fields left within the document,
therefore I can no longer go back to the Mail Merge Wizard.

If I save the file at this point, I would lose my template file. So then I have
to reload the file w/o saving it in order to edit it again as a template.

Steps to reproduce
1. Insert mail merger fields
2. Tools  Mail Merge Wizard  Proceed to Step 7 and press Edit Document
3. Click on Print Preview icon
4. Close Print Preview Mode
5. The 'Return to Wizard' button disappears

Proposals;
1. Disable Print Preview icon for the time being if it is not an easy task.
   At least it will save many users from having this problem.
2. Somehow avoid Mail Merge Wizard from quitting itself after Print Preview.

Thank you in advance.

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 54713] PRINTING: 100% copy of a page from wikipedia, does that libreoffice dont printing

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54713

--- Comment #1 from A stgohi-lob...@yahoo.de ---
not reproducible with LO 3.6.4.3. (Win7 Home, 64bit)

-- 
You are receiving this mail because:
You 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 58798] Draw - Unit of Measurement always reset to Inch

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58798

Joren De Cuyper joren.libreoff...@telenet.be changed:

   What|Removed |Added

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

--- Comment #2 from Joren De Cuyper joren.libreoff...@telenet.be ---
This is a duplicate of Bug 57915 - Impress - Setting Ruler Visible reset Unit
of Measurement to Default.

But thanks for reporting anyway!

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

-- 
You are receiving this mail because:
You 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 57915] Impress - Setting Ruler Visible reset Unit of Measurement to Default.

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=57915

--- Comment #6 from Joren De Cuyper joren.libreoff...@telenet.be ---
*** Bug 58798 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 33617] lines created in report builder are not shown in report

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=33617

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

   What|Removed |Added

Version|4.0.0.0.beta2   |3.3.1 RC1

-- 
You are receiving this mail because:
You 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 33617] lines created in report builder are not shown in report

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=33617

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

   What|Removed |Added

Version|3.3.1 RC1   |3.3.0 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 54520] VIEWING: References to footnotes not super scripted

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54520

--- Comment #3 from A stgohi-lob...@yahoo.de ---
reproducible with LO 3.6.4.3. (Win7 Home, 64bit)

But I think the footnote should not belong to the header, otherwise you would
need maybe this footnote also on further pages if the reference text is for
instance moved to the next page.  But if you try this in the test document then
you will find no footnote on the next page, although you would actually need it
in this case.
Therefore, I think the footnote should not belong to the header, but if it
should also be mentioned in the reference then it should be superscript and the
footnote should also be copied to the page of the reference.  
But I personally would rather say that the footnote should not belong to the
header.

When I tested the test document, then it seemed not be possible to format the
footnote not as a header.  In addition, I recognised that if I format the
header as a normal text body, then the reference will nevertheless be kept and
this seems to my mind not to be consistent.

I think this issue needs to be evaluated further and the procedure needs
improvements.  Maybe somebody else can help with this 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 47223] Link from calc to writer with relative-path

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=47223

cébé cyril.be...@laposte.net changed:

   What|Removed |Added

Version|3.6.4.3 release |4.0.0.0.beta2

--- Comment #6 from cébé cyril.be...@laposte.net ---
Doesn't work on 4b2 !

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


  1   2   >