[Libreoffice-commits] core.git: 3 commits - external/libmariadb external/mysqlcppconn

2014-09-04 Thread Norbert Thiebaud
 external/libmariadb/UnpackedTarball_mariadb.mk|1 
 external/libmariadb/mariadb-inline.patch.1|   23 +
 external/mysqlcppconn/Library_mysqlcppconn.mk |   15 ++
 external/mysqlcppconn/UnpackedTarball_mysqlcppconn.mk |2 
 external/mysqlcppconn/version_info.h  |   42 ++
 5 files changed, 73 insertions(+), 10 deletions(-)

New commits:
commit eef839fe482c8c3ba2152b3e1edd43fb21c2de02
Author: Norbert Thiebaud nthieb...@gmail.com
Date:   Thu Sep 4 08:24:40 2014 +0200

fdo#82847 mariadb patch out problematic 'inline' that result in link issue

Change-Id: I60d9ba1315090c896d6f7f9b3d407ab11a1d2037

diff --git a/external/libmariadb/UnpackedTarball_mariadb.mk 
b/external/libmariadb/UnpackedTarball_mariadb.mk
index c3c5ed4..d3a315f 100644
--- a/external/libmariadb/UnpackedTarball_mariadb.mk
+++ b/external/libmariadb/UnpackedTarball_mariadb.mk
@@ -29,6 +29,7 @@ $(eval $(call gb_UnpackedTarball_set_patchlevel,mariadb,1))
 $(eval $(call gb_UnpackedTarball_add_patches,mariadb,\
 external/libmariadb/mariadb-swap.patch \
 external/libmariadb/mariadb-msvc.patch.1 \
+   external/libmariadb/mariadb-inline.patch.1 \
 ))
 
 # vim: set noet sw=4 ts=4:
diff --git a/external/libmariadb/mariadb-inline.patch.1 
b/external/libmariadb/mariadb-inline.patch.1
new file mode 100644
index 000..84ebc81
--- /dev/null
+++ b/external/libmariadb/mariadb-inline.patch.1
@@ -0,0 +1,23 @@
+diff -ur mariadb.org/libmariadb/hash.c mariadb/libmariadb/hash.c
+--- mariadb.org/libmariadb/hash.c  2014-09-03 14:57:29.0 +0200
 mariadb/libmariadb/hash.c  2014-09-03 14:59:09.0 +0200
+@@ -94,7 +94,7 @@
+   handle inline functions that are not defined as native types
+ */
+ 
+-inline char*
++uchar*
+ hash_key(HASH *hash,const uchar *record,uint *length,my_bool first)
+ {
+   if (hash-get_key)
+@@ -191,9 +191,6 @@
+ #endif
+ 
+ 
+-#ifndef __SUNPRO_C/* SUNPRO can't handle this */
+-inline
+-#endif
+ unsigned int rec_hashnr(HASH *hash,const uchar *record)
+ {
+   uint length;
+
commit e68a4a40ee3d321307029388107537ecee288e18
Author: Norbert Thiebaud nthieb...@gmail.com
Date:   Wed Sep 3 15:25:29 2014 +0200

non-system mariadb need iconv

Change-Id: I2c150d9adf9f5d21b36c9cf57f62e214dc97b680

diff --git a/external/mysqlcppconn/Library_mysqlcppconn.mk 
b/external/mysqlcppconn/Library_mysqlcppconn.mk
index 2abfcb3..2d9b353 100644
--- a/external/mysqlcppconn/Library_mysqlcppconn.mk
+++ b/external/mysqlcppconn/Library_mysqlcppconn.mk
@@ -24,6 +24,12 @@ $(eval $(call gb_Library_add_libs,mysqlcppconn,\
 
 endif
 
+ifeq ($(SYSTEM_MARIADB),)
+$(eval $(call gb_Library_use_externals,mysqlcppconn,\
+   iconv \
+))
+endif
+
 $(eval $(call gb_Library_set_warnings_not_errors,mysqlcppconn))
 
 $(eval $(call gb_Library_set_generated_cxx_suffix,mysqlcppconn,cpp))
commit 4c232e49621065d6b12e087333f44a224f788d71
Author: Norbert Thiebaud nthieb...@gmail.com
Date:   Wed Sep 3 15:25:01 2014 +0200

remove build dependency on cmake for sqlconnector

Change-Id: I73a56b902099939972b8f5c8a55d231459e5421b

diff --git a/external/mysqlcppconn/Library_mysqlcppconn.mk 
b/external/mysqlcppconn/Library_mysqlcppconn.mk
index 1670de8..2abfcb3 100644
--- a/external/mysqlcppconn/Library_mysqlcppconn.mk
+++ b/external/mysqlcppconn/Library_mysqlcppconn.mk
@@ -74,13 +74,4 @@ $(eval $(call 
gb_Library_add_generated_exception_objects,mysqlcppconn,\

UnpackedTarball/mysqlcppconn/driver/nativeapi/mysql_native_statement_wrapper \
 ))
 
-$(WORKDIR)/GenCxxObject/UnpackedTarball/mysqlcppconn/driver/mysql_metadata.o 
$(WORKDIR)/GenCxxObject/UnpackedTarball/mysqlcppconn/driver/mysql_driver.o: 
$(WORKDIR)/UnpackedTarball/mysqlcppconn/driver/version_info.h
-
-ifeq ($(SYSTEM_BOOST),)
-MYSQLCPPCONN_BOOST:=-DBOOST_ROOT:STRING=$(call 
gb_UnpackedTarball_get_dir,boost)
-endif
-
-$(WORKDIR)/UnpackedTarball/mysqlcppconn/driver/version_info.h: $(call 
gb_UnpackedTarball_get_target,mysqlcppconn) 
$(WORKDIR)/GenCxxObject/UnpackedTarball/mysqlcppconn/driver/mysql_util.o
-   cd $(WORKDIR)/GenCxxObject/UnpackedTarball/mysqlcppconn  cmake 
$(MYSQLCPPCONN_BOOST) ../../../UnpackedTarball/mysqlcppconn/
-
 # vim: set noet sw=4 ts=4:
diff --git a/external/mysqlcppconn/UnpackedTarball_mysqlcppconn.mk 
b/external/mysqlcppconn/UnpackedTarball_mysqlcppconn.mk
index 5f5a437..9647c38 100644
--- a/external/mysqlcppconn/UnpackedTarball_mysqlcppconn.mk
+++ b/external/mysqlcppconn/UnpackedTarball_mysqlcppconn.mk
@@ -12,13 +12,13 @@ $(eval $(call 
gb_UnpackedTarball_UnpackedTarball,mysqlcppconn))
 $(eval $(call 
gb_UnpackedTarball_set_tarball,mysqlcppconn,$(MYSQLCPPCONN_TARBALL)))
 
 $(eval $(call 
gb_UnpackedTarball_add_file,mysqlcppconn,cppconn/config.h,external/mysqlcppconn/config.h))
+$(eval $(call 
gb_UnpackedTarball_add_file,mysqlcppconn,version_info.h,external/mysqlcppconn/version_info.h))
 
 $(eval $(call 

[Libreoffice-commits] core.git: soltools/mkdepend

2014-09-04 Thread Caolán McNamara
 soltools/mkdepend/main.c |   79 ++-
 1 file changed, 5 insertions(+), 74 deletions(-)

New commits:
commit 3e835154a7af929fd18683af85c28efabd498d41
Author: Caolán McNamara caol...@redhat.com
Date:   Wed Sep 3 22:59:10 2014 +0100

coverity#1019334 Explicit null dereferenced

Change-Id: I22b85cbfda1c1bd705b35095e03cfae4071d2fb7

diff --git a/soltools/mkdepend/main.c b/soltools/mkdepend/main.c
index b8dde42..6cbcf12 100644
--- a/soltools/mkdepend/main.c
+++ b/soltools/mkdepend/main.c
@@ -115,7 +115,7 @@ char*directives[] = {
 
 /***   function declarations /
 /***   added by -Wall project ***/
-void redirect(char * line, char * makefile );
+void redirect(char * makefile);
 
 struct  inclist inclist[ MAXFILES ],
 *inclistp = inclist;
@@ -375,7 +375,7 @@ int main(int argc, char**argv)
 *incp++ = defincdir;
 }
 
-redirect(startat, makefile);
+redirect(makefile);
 
 /*
  * catch signals.
@@ -650,81 +650,12 @@ int rename (char *from, char *to)
 }
 #endif /* USGISH */
 
-void redirect(char *line, char *makefile)
+void redirect(char *makefile)
 {
 FILE*fdout;
-fdout = freopen(makefile, wb, stdout); // binary mode please
+fdout = makefile ? freopen(makefile, wb, stdout) : NULL; // binary mode 
please
 if (fdout == NULL)
-fatalerr(cannot open \%s\\n, makefile);
-(void) line;
-
-// don't need any of that nonsense
-#if 0
-struct stat st;
-FILE*fdin, *fdout;
-charbackup[ BUFSIZ ],
-buf[ BUFSIZ ];
-boolean found = FALSE;
-int len;
-
-/*
- * if makefile is - then let it pour onto stdout.
- */
-if (makefile  *makefile == '-'  *(makefile+1) == '\0')
-return;
-
-/*
- * use a default makefile is not specified.
- */
-if (!makefile) {
-if (stat(Makefile, st) == 0)
-makefile = Makefile;
-else if (stat(makefile, st) == 0)
-makefile = makefile;
-else
-fatalerr([mM]akefile is not present\n);
-}
-else
-stat(makefile, st);
-if ((fdin = fopen(makefile, r)) == NULL)
-fatalerr(cannot open \%s\\n, makefile);
-sprintf(backup, %s.bak, makefile);
-unlink(backup);
-#if defined(WIN32)
-fclose(fdin);
-#endif
-if (rename(makefile, backup)  0)
-fatalerr(cannot rename %s to %s\n, makefile, backup);
-#if defined(WIN32)
-if ((fdin = fopen(backup, r)) == NULL)
-fatalerr(cannot open \%s\\n, backup);
-#endif
-if ((fdout = freopen(makefile, w, stdout)) == NULL)
-fatalerr(cannot open \%s\\n, backup);
-len = strlen(line);
-while (!found  fgets(buf, BUFSIZ, fdin)) {
-if (*buf == '#'  strncmp(line, buf, len) == 0)
-found = TRUE;
-fputs(buf, fdout);
-}
-if (!found) {
-if (verbose)
-warning(Adding new delimiting line \%s\ and dependencies...\n,
-line);
-puts(line); /* same as fputs(fdout); but with newline */
-} else if (append) {
-while (fgets(buf, BUFSIZ, fdin)) {
-fputs(buf, fdout);
-}
-}
-fflush(fdout);
-#if defined(USGISH) || defined(USE_CHMOD)
-chmod(makefile, st.st_mode);
-#else
-fchmod(fileno(fdout), st.st_mode);
-#endif /* USGISH */
-fclose(fdin);
-#endif
+fatalerr(cannot open \%s\\n, makefile ? makefile : NULL);
 }
 
 void fatalerr(char *msg, ...)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: Bug introduced during translation? (was: [Bug 39674] find / fix all German spellings in internal APIs)

2014-09-04 Thread Caolán McNamara
On Sat, 2014-08-30 at 15:31 +0200, Nino Novak wrote:
 Hi,
 
 by chance I looked into this commit and seeing the lines cited below, I'm
 asking myself how many strange bugs or regressions are introduced this way.
 
 Here, the names of two variables were translated - which would be ok, but
 only if all of their occurences were changed accordingly.
 
 In this case, the translation of only one occurence in my eyes (though I'm
 not a dev) *must* break something.

Looks like the full change was just split over two commits of
e886f9ad66cf0e1961deebb30a97e0b35bb5a816 and
5605a36a31081875087ff5cb28b84790845ba695 so all is ok. If it had gone
unnoticed then it generally would simply fail to compile wrt variable
names.

C.

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


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

2014-09-04 Thread Markus Mohrhard
 oox/source/drawingml/colorchoicecontext.cxx |   12 +++-
 1 file changed, 11 insertions(+), 1 deletion(-)

New commits:
commit 689742b9b75250fcebf50f0d9b73052d4b10e7e1
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Wed Sep 3 19:55:35 2014 +0200

MSO finally decided to follow the spec, fdo#83312

Change-Id: I8c611b49e3bf4645736425bd33c2994ae2c28337

diff --git a/oox/source/drawingml/colorchoicecontext.cxx 
b/oox/source/drawingml/colorchoicecontext.cxx
index 7c38409..e255fcb 100644
--- a/oox/source/drawingml/colorchoicecontext.cxx
+++ b/oox/source/drawingml/colorchoicecontext.cxx
@@ -109,7 +109,17 @@ void ColorValueContext::onStartElement( const 
AttributeList rAttribs )
 case A_TOKEN( satOff ):
 case A_TOKEN( shade ):
 case A_TOKEN( tint ):
-mrColor.addTransformation( nElement, rAttribs.getInteger( XML_val, 
0 ) );
+{
+OUString aValue = rAttribs.getString( XML_val, OUString() );
+sal_Int32 nVal = 0;
+if (aValue.endsWith(%))
+{
+nVal = aValue.toDouble() * PER_PERCENT;
+}
+else
+nVal = rAttribs.getInteger(XML_val, 0);
+mrColor.addTransformation( nElement, nVal );
+}
 break;
 case A_TOKEN( comp ):
 case A_TOKEN( gamma ):
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Bug 39625] Make existing cppunittests work

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39625

--- Comment #14 from Caolán McNamara caol...@redhat.com ---
test_comtools.cxx looks like a forgotten test. I see it is windows only, so
can only be tested under windows and not the other platforms.

If you're in a position where you can try fixing the test then sure go for it. 
t might turn out that the test doesn't work and that it is not worth fixing,
that's a good result too, in which case submitting a patch to delete the broken
and not-worth-fixing test is good too.

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


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

2014-09-04 Thread Miklos Vajna
 writerfilter/source/ooxml/modelpreprocess.py |   29 ++-
 1 file changed, 3 insertions(+), 26 deletions(-)

New commits:
commit ed3261a33a8dbc5bcc022c3ecc374bd2d899c300
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Thu Sep 4 09:39:09 2014 +0200

We only need to map oox URL's to aliases

Change-Id: I130a057f9d5925b9648f7f39223bb5f4ed8f33ea

diff --git a/writerfilter/source/ooxml/modelpreprocess.py 
b/writerfilter/source/ooxml/modelpreprocess.py
index 2367e5c..8d2c3a1 100644
--- a/writerfilter/source/ooxml/modelpreprocess.py
+++ b/writerfilter/source/ooxml/modelpreprocess.py
@@ -12,23 +12,9 @@ from xml.dom import minidom
 import sys
 
 
-def prefixFromUrl(url):
-if url in list(ooxUrlAliases.keys()):
-return ooxUrlAliases[url]
-else:
-if url.startswith(http://;):
-return url.replace('http://', '').replace('/', '_').replace('.', 
'_')
-else:
-return 
-
-
 def prefixForGrammar(namespace):
 ns = namespace.getElementsByTagName(grammar)[0].getAttribute(ns)
-if ns in list(ooxUrlAliases.keys()):
-prefix = ooxUrlAliases[ns]
-return prefix
-else:
-return prefixFromUrl(ns)
+return ooxUrlAliases[ns]
 
 
 def parseNamespaceAliases(node):
@@ -43,9 +29,7 @@ def parseNamespaces(fro):
 sock = open(fro)
 for i in sock.readlines():
 line = i.strip()
-id, alias, url = line.split(' ')
-ooxUrlIds[url] = id
-ooxAliasIds[alias] = id
+alias, url = line.split(' ')[1:]
 ooxUrlAliases[url] = alias
 sock.close()
 
@@ -70,14 +54,11 @@ def preprocess(model):
 grammar = i.getElementsByTagName(grammar)[0]
 
 for j in i.getElementsByTagName(element) + 
i.getElementsByTagName(attribute):
-if j.localName == attribute and not len(j.getAttribute(name)):
-continue
-
 # prefix
 prefix = 
 if : in j.getAttribute(name):
 nameprefix = j.getAttribute(name).split(':')[0]
-prefix = prefixFromUrl(modelNamespaceAliases[nameprefix])
+prefix = ooxUrlAliases[modelNamespaceAliases[nameprefix]]
 elif j.localName == attribute:
 if grammar.getAttribute(attributeFormDefault) == qualified:
 prefix = grammarprefix
@@ -98,10 +79,6 @@ def preprocess(model):
 namespacesPath = sys.argv[1]
 modelPath = sys.argv[2]
 
-# URL - ID, from oox
-ooxUrlIds = {}
-# Alias - ID, from oox
-ooxAliasIds = {}
 # URL - alias, from oox
 ooxUrlAliases = {}
 parseNamespaces(namespacesPath)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: 2 commits - include/rtl sal/rtl sw/source

2014-09-04 Thread Caolán McNamara
 include/rtl/bootstrap.h  |7 +++
 sal/rtl/bootstrap.cxx|9 +++--
 sw/source/uibase/uno/unoatxt.cxx |   31 ++-
 3 files changed, 32 insertions(+), 15 deletions(-)

New commits:
commit 0d0137f4aebb350f93b21296a59c19829624221a
Author: Caolán McNamara caol...@redhat.com
Date:   Thu Sep 4 09:04:09 2014 +0100

coverity#707336 Uncaught exception

and

coverity#707337 Uncaught exception

Change-Id: Id6ad65e382d2a5b5f8d13a312384d715b47e95db

diff --git a/sw/source/uibase/uno/unoatxt.cxx b/sw/source/uibase/uno/unoatxt.cxx
index 3aa4ba1..deb0019 100644
--- a/sw/source/uibase/uno/unoatxt.cxx
+++ b/sw/source/uibase/uno/unoatxt.cxx
@@ -18,6 +18,7 @@
  */
 
 #include com/sun/star/beans/PropertyAttribute.hpp
+#include com/sun/star/lang/WrappedTargetRuntimeException.hpp
 #include osl/mutex.hxx
 #include osl/diagnose.h
 #include vcl/svapp.hxx
@@ -427,11 +428,31 @@ uno::Reference text::XAutoTextEntry   
SwXAutoTextGroup::insertNewByName(const
 pGlossaries-PutGroupDoc( pGlosGroup );
 }
 
-uno::Reference text::XAutoTextEntry  xEntry = pGlossaries ?
-pGlossaries-GetAutoTextEntry( m_sGroupName, sName, sShortName, true ) 
:
-uno::Reference text::XAutoTextEntry ();
-OSL_ENSURE( xEntry.is(), SwXAutoTextGroup::insertNewByName: no UNO object 
created? How this? );
-// we just inserted the entry into the group, so why doesn't it exist?
+uno::Reference text::XAutoTextEntry  xEntry;
+
+try
+{
+xEntry = pGlossaries ?
+pGlossaries-GetAutoTextEntry( m_sGroupName, sName, sShortName, 
true ) :
+uno::Reference text::XAutoTextEntry ();
+OSL_ENSURE( xEntry.is(), SwXAutoTextGroup::insertNewByName: no UNO 
object created? How this? );
+// we just inserted the entry into the group, so why doesn't it 
exist?
+}
+catch (const container::ElementExistException)
+{
+throw;
+}
+catch (const uno::RuntimeException)
+{
+throw;
+}
+catch (const uno::Exception e)
+{
+throw css::lang::WrappedTargetRuntimeException(
+   Error Getting AutoText!,
+   static_cast  OWeakObject *  ( this ),
+   makeAny( e ) );
+}
 
 return xEntry;
 }
commit 91c0bdf0816a5e62f4fa6cad7587ce8db975425f
Author: Caolán McNamara caol...@redhat.com
Date:   Thu Sep 4 08:08:58 2014 +0100

coverity#706611 Uncaught exception

Change-Id: I42bff46998b3d516161068af3d53bf92ee2f2b15

diff --git a/include/rtl/bootstrap.h b/include/rtl/bootstrap.h
index 850aa7b..a4e109f 100644
--- a/include/rtl/bootstrap.h
+++ b/include/rtl/bootstrap.h
@@ -200,15 +200,14 @@ SAL_DLLPUBLIC void SAL_CALL 
rtl_bootstrap_get_iniName_from_handle(
 @param macro[inout]  The macro to be expanded
 */
 SAL_DLLPUBLIC void SAL_CALL rtl_bootstrap_expandMacros_from_handle(
-rtlBootstrapHandle handle, rtl_uString ** macro )
-SAL_THROW_EXTERN_C();
+rtlBootstrapHandle handle, rtl_uString ** macro );
+
 /** Expands a macro using default bootstrap variables.
 
 @param macro[inout]  The macro to be expanded
 */
 SAL_DLLPUBLIC void SAL_CALL rtl_bootstrap_expandMacros(
-rtl_uString ** macro )
-SAL_THROW_EXTERN_C();
+rtl_uString ** macro);
 
 /** Escapes special characters ($ and \).
 
diff --git a/sal/rtl/bootstrap.cxx b/sal/rtl/bootstrap.cxx
index cf5b9ca..2e99332 100644
--- a/sal/rtl/bootstrap.cxx
+++ b/sal/rtl/bootstrap.cxx
@@ -811,10 +811,9 @@ void SAL_CALL rtl_bootstrap_set (
 r_rtl_bootstrap_set_list.push_back( rtl_bootstrap_NameValue( name, value ) 
);
 }
 
-void SAL_CALL rtl_bootstrap_expandMacros_from_handle (
+void SAL_CALL rtl_bootstrap_expandMacros_from_handle(
 rtlBootstrapHandle handle,
-rtl_uString ** macro
-) SAL_THROW_EXTERN_C()
+rtl_uString ** macro)
 {
 if (handle == NULL) {
 handle = get_static_bootstrap_handle();
@@ -825,9 +824,7 @@ void SAL_CALL rtl_bootstrap_expandMacros_from_handle (
 rtl_uString_assign( macro, expanded.pData );
 }
 
-void SAL_CALL rtl_bootstrap_expandMacros(
-rtl_uString ** macro )
-SAL_THROW_EXTERN_C()
+void SAL_CALL rtl_bootstrap_expandMacros(rtl_uString ** macro)
 {
 rtl_bootstrap_expandMacros_from_handle(NULL, macro);
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: Crash test update

2014-09-04 Thread Caolán McNamara
On Sun, 2014-08-31 at 21:41 +, crashtest.libreoff...@gmail.com
wrote:
 New crashtest update available at 
 dev-builds.libreoffice.org/crashtest/ef2668bad976f1fbb70759887cafd35ea7833655

Meh, top three of the pdf import failures, fdo50841-2.pdf,
gnome554483-1.pdf and moz724015-1.pdf import locally for me without
error, albeit a bit sluggish. But if they had timed-out I imagine they
should have appeared in
http://dev-builds.libreoffice.org/crashtest/ef2668bad976f1fbb70759887cafd35ea7833655/pdf/timeoutFiles.log
 not
http://dev-builds.libreoffice.org/crashtest/ef2668bad976f1fbb70759887cafd35ea7833655/pdf/crashlog.txt
which is a bit confusing.

C.


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


Re: How to launch LibreOffice from source

2014-09-04 Thread Stephan Bergmann

On 09/03/2014 03:21 PM, Noel Grandin wrote:

the autogen.sh normally prints out instructions at the end of it's run

I think it's something like
./instdir/bin/soffice.bin


Always run the instdir/program/soffice wrapper script, never run the 
instdir/program/soffice.bin executable directly.


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


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

2014-09-04 Thread Eike Rathke
 sc/source/core/tool/address.cxx |4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

New commits:
commit 742060f74ad8249e8412af5e6562d958a1d8d4cd
Author: Eike Rathke er...@redhat.com
Date:   Thu Sep 4 11:38:40 2014 +0200

eliminate superfluous temporary string

Change-Id: Ie58701754c7be68ba5a9109153312ed152ea293f

diff --git a/sc/source/core/tool/address.cxx b/sc/source/core/tool/address.cxx
index ef3baad..6a37952 100644
--- a/sc/source/core/tool/address.cxx
+++ b/sc/source/core/tool/address.cxx
@@ -1744,9 +1744,7 @@ OUString ScAddress::Format(sal_uInt16 nFlags, const 
ScDocument* pDoc,
 if( nFlags  SCA_TAB_3D )
 {
 OUString aTabName, aDocName;
-OUString aTmp;
-pDoc-GetName(nTab, aTmp);
-aTabName = aTmp; // TODO: remove use of String here.
+pDoc-GetName(nTab, aTabName);
 // External Reference, same as in ScCompiler::MakeTabStr()
 if( aTabName[0] == '\'' )
 {   // 'Doc'#Tab
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: 3 commits - offapi/com svx/source sw/inc sw/source

2014-09-04 Thread Caolán McNamara
 offapi/com/sun/star/text/XTextConvert.idl   |5 +++--
 offapi/com/sun/star/text/XTextPortionAppend.idl |8 +---
 svx/source/unodraw/unoshap4.cxx |   11 ++-
 sw/inc/unotext.hxx  |8 ++--
 sw/source/core/unocore/unotext.cxx  |6 --
 5 files changed, 28 insertions(+), 10 deletions(-)

New commits:
commit 0ba251fb2b176df7712b9e7c5ef67ff709c022e0
Author: Caolán McNamara caol...@redhat.com
Date:   Thu Sep 4 09:56:56 2014 +0100

coverity#983930 Uncaught exception

Change-Id: I812916ddd10db6272ca0aeb5409eee8ff163d3fc

diff --git a/svx/source/unodraw/unoshap4.cxx b/svx/source/unodraw/unoshap4.cxx
index 4d7f298..3fac4a0 100644
--- a/svx/source/unodraw/unoshap4.cxx
+++ b/svx/source/unodraw/unoshap4.cxx
@@ -22,6 +22,7 @@
 #include com/sun/star/embed/NoVisualAreaSizeException.hpp
 #include com/sun/star/embed/Aspects.hpp
 #include com/sun/star/task/XInteractionHandler.hpp
+#include com/sun/star/ucb/CommandFailedException.hpp
 
 #include vcl/virdev.hxx
 #include svx/svdoole2.hxx
@@ -947,10 +948,18 @@ bool SvxMediaShape::getPropertyValueImpl( const OUString 
rName, const SfxItemPr
 catch (const css::ucb::ContentCreationException e)
 {
 throw css::lang::WrappedTargetException(
-Error Getting InputStream!,
+ContentCreationException Getting InputStream!,
 static_cast  OWeakObject *  ( this ),
 makeAny( e ) );
 }
+catch (const css::ucb::CommandFailedException e)
+{
+throw css::lang::WrappedTargetException(
+CommandFailedException Getting InputStream!,
+static_cast  OWeakObject *  ( this ),
+makeAny( e ) );
+}
+
 break;
 
 case OWN_ATTR_MEDIA_TEMPFILEURL:
commit d47678c990681d0cfc7f2c843bb9aedaeb08511a
Author: Caolán McNamara caol...@redhat.com
Date:   Thu Sep 4 09:49:23 2014 +0100

coverity#707311 Uncaught exception

Change-Id: Ifdab456cb545e552a2efaed03ff00aeac874d47d

diff --git a/offapi/com/sun/star/text/XTextConvert.idl 
b/offapi/com/sun/star/text/XTextConvert.idl
index b707489..2de810c 100644
--- a/offapi/com/sun/star/text/XTextConvert.idl
+++ b/offapi/com/sun/star/text/XTextConvert.idl
@@ -22,7 +22,7 @@
 #include com/sun/star/uno/XInterface.idl
 #include com/sun/star/beans/PropertyValues.idl
 #include com/sun/star/lang/IllegalArgumentException.idl
-
+#include com/sun/star/beans/PropertyVetoException,idl
 #include com/sun/star/beans/UnknownPropertyException.idl
 #include com/sun/star/text/XTextRange.idl
 #include com/sun/star/text/XTextContent.idl
@@ -57,7 +57,8 @@ interface XTextConvert : com::sun::star::uno::XInterface
 [in] com::sun::star::text::XTextRange End,
 [in] com::sun::star::beans::PropertyValues 
FrameProperties )
 raises( com::sun::star::lang::IllegalArgumentException,
-   
com::sun::star::beans::UnknownPropertyException );
+
com::sun::star::beans::UnknownPropertyException,
+com::sun::star::beans::PropertyVetoException );
 
 /** converts the paragraphs marked in TableRanges into a table.
 
diff --git a/sw/inc/unotext.hxx b/sw/inc/unotext.hxx
index 69490db..4edca63 100644
--- a/sw/inc/unotext.hxx
+++ b/sw/inc/unotext.hxx
@@ -284,6 +284,7 @@ public:
 ::com::sun::star::beans::PropertyValue  xFrameProperties)
 throw (css::lang::IllegalArgumentException,
css::beans::UnknownPropertyException,
+   css::beans::PropertyVetoException,
css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
 virtual ::com::sun::star::uno::Reference
 ::com::sun::star::text::XTextTable  SAL_CALL
diff --git a/sw/source/core/unocore/unotext.cxx 
b/sw/source/core/unocore/unotext.cxx
index 029c596..b6f3979 100644
--- a/sw/source/core/unocore/unotext.cxx
+++ b/sw/source/core/unocore/unotext.cxx
@@ -1525,7 +1525,7 @@ SwXText::convertToTextFrame(
 const uno::Reference text::XTextRange  xEnd,
 const uno::Sequence beans::PropertyValue  rFrameProperties)
 throw (lang::IllegalArgumentException, beans::UnknownPropertyException,
-   uno::RuntimeException, std::exception)
+   beans::PropertyVetoException, uno::RuntimeException, std::exception)
 {
 SolarMutexGuard aGuard;
 
commit 8de4c7363197c6d4017ff978ff363ff5a75b1bf1
Author: Caolán McNamara caol...@redhat.com
Date:   Thu Sep 4 09:45:16 2014 +0100

coverity#983958 Uncaught exception

Change-Id: Idd9c2dcfbeceb3519b1632a2f9b2651c73451061

diff --git a/offapi/com/sun/star/text/XTextPortionAppend.idl 

[Libreoffice-commits] core.git: jurt/Library_jpipe.mk jurt/source

2014-09-04 Thread Stephan Bergmann
 jurt/Library_jpipe.mk  |   45 +-
 jurt/source/pipe/staticsalhack.h   |   16 +
 jurt/source/pipe/staticsalhack_c.c |   19 +++
 jurt/source/pipe/staticsalhack_cxx.cxx |   57 +
 4 files changed, 136 insertions(+), 1 deletion(-)

New commits:
commit ddc7bb629ade15b3341f2e3c347652c7b8925037
Author: Stephan Bergmann sberg...@redhat.com
Date:   Thu Sep 4 11:51:22 2014 +0200

Poor hack for libjpipe.so under Clang -fsanitize=*

Change-Id: I5c1036448cfc543f55cf1aa303abcfda6a64f64e

diff --git a/jurt/Library_jpipe.mk b/jurt/Library_jpipe.mk
index 44d5024..2ca6cb7 100644
--- a/jurt/Library_jpipe.mk
+++ b/jurt/Library_jpipe.mk
@@ -21,7 +21,7 @@ $(eval $(call gb_Library_add_cobjects,jpipe,\
 jurt/source/pipe/wrapper/wrapper \
 ))
 
-else
+else ifeq ($(COM_GCC_IS_CLANG)$(filter -fsanitize=%,%(gb_CC)),)
 
 $(eval $(call gb_Library_use_libraries,jpipe,\
 sal \
@@ -31,6 +31,49 @@ $(eval $(call gb_Library_add_cobjects,jpipe,\
 jurt/source/pipe/com_sun_star_lib_connections_pipe_PipeConnection \
 ))
 
+else
+
+# HACK for Clang -fsanitize=address etc. to build libjpipe.so (dlopen'ed from
+# java executable) without dependence on __asan_* etc. symbols (expected to be
+# provided by the executable), incl. statically linking in the relevant parts 
of
+# sal:
+
+$(eval $(call gb_Library_add_cobjects,jpipe, \
+jurt/source/pipe/com_sun_star_lib_connections_pipe_PipeConnection \
+jurt/source/pipe/staticsalhack_c \
+))
+
+$(eval $(call gb_Library_add_exception_objects,jpipe, \
+jurt/source/pipe/staticsalhack_cxx \
+))
+
+$(eval $(call gb_Library_add_defs,jpipe, \
+-DRTL_OS=\$(RTL_OS)\ \
+-DRTL_ARCH=\$(RTL_ARCH)\ \
+))
+
+$(eval $(call gb_Library_set_include,jpipe, \
+$$(INCLUDE) \
+-I$(SRCDIR) \
+-I$(SRCDIR)/sal/inc \
+-I$(SRCDIR)/sal/osl/unx \
+-I$(SRCDIR)/sal/rtl \
+-I$(SRCDIR)/sal/textenc \
+))
+
+$(eval $(call gb_Library_use_externals,jpipe, \
+boost_headers \
+))
+
+$(eval $(call gb_Library_add_libs,jpipe, \
+$(if $(filter-out $(OS),ANDROID),-lpthread) \
+))
+
+$(call gb_LinkTarget_get_target,$(call gb_Library_get_linktarget,jpipe)): \
+gb_CC := $(filter-out -fsanitize=%,$(gb_CC))
+$(call gb_LinkTarget_get_target,$(call gb_Library_get_linktarget,jpipe)): \
+gb_CXX := $(filter-out -fsanitize=%,$(gb_CXX))
+
 endif
 
 # vim:set noet sw=4 ts=4:
diff --git a/jurt/source/pipe/staticsalhack.h b/jurt/source/pipe/staticsalhack.h
new file mode 100644
index 000..f1dc083
--- /dev/null
+++ b/jurt/source/pipe/staticsalhack.h
@@ -0,0 +1,16 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
+#define DISABLE_DYNLOADING
+#define FORCE_SYSALLOC
+#define NO_CHILD_PROCESSES
+#undef SAL_LOG_INFO
+#undef SAL_LOG_WARN
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/jurt/source/pipe/staticsalhack_c.c 
b/jurt/source/pipe/staticsalhack_c.c
new file mode 100644
index 000..77c4291
--- /dev/null
+++ b/jurt/source/pipe/staticsalhack_c.c
@@ -0,0 +1,19 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
+#include staticsalhack.h
+
+#include sal/osl/unx/memory.c
+#include sal/osl/unx/mutex.c
+#include sal/osl/unx/nlsupport.c
+#include sal/osl/unx/pipe.c
+#include sal/osl/unx/readwrite_helper.c
+#include sal/osl/unx/thread.c
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/jurt/source/pipe/staticsalhack_cxx.cxx 
b/jurt/source/pipe/staticsalhack_cxx.cxx
new file mode 100644
index 000..f3a5e5d
--- /dev/null
+++ b/jurt/source/pipe/staticsalhack_cxx.cxx
@@ -0,0 +1,57 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
+#include staticsalhack.h
+
+#include sal/rtl/string.cxx
+#undef IMPL_RTL_EMPTYSTRING
+#undef IMPL_RTL_STRCODE
+#undef IMPL_RTL_STRINGDATA
+#undef IMPL_RTL_STRINGNAME
+#undef IMPL_RTL_STRNAME
+#undef IMPL_RTL_USTRCODE
+#undef RTL_LOG_STRING_BITS
+#include sal/rtl/ustring.cxx
+
+#include sal/osl/unx/conditn.cxx
+#include sal/osl/unx/file.cxx
+#include sal/osl/unx/file_error_transl.cxx
+#include sal/osl/unx/file_misc.cxx
+#include 

[Libreoffice-commits] core.git: 5 commits - basic/source dbaccess/CppunitTest_dbaccess_empty_stdlib_save.mk dbaccess/CppunitTest_dbaccess_nolib_save.mk dbaccess/Module_dbaccess.mk dbaccess/qa

2014-09-04 Thread Lionel Elie Mamane
 basic/source/uno/namecont.cxx  |   21 +--
 dbaccess/CppunitTest_dbaccess_empty_stdlib_save.mk |  119 +
 dbaccess/CppunitTest_dbaccess_nolib_save.mk|  119 +
 dbaccess/Module_dbaccess.mk|2 
 dbaccess/qa/extras/dialog-save.cxx |   10 -
 dbaccess/qa/extras/empty-stdlib-save.cxx   |  145 +
 dbaccess/qa/extras/nolib-save.cxx  |  135 +++
 7 files changed, 538 insertions(+), 13 deletions(-)

New commits:
commit c4f7c5c6890d28a2ff1b9e8f411cd19db587e881
Author: Lionel Elie Mamane lio...@mamane.lu
Date:   Thu Sep 4 11:59:11 2014 +0200

fdo#52076 unittest

Change-Id: Iae10f9728db4c90c4a55ad692b32cddeb7adc48a

diff --git a/dbaccess/CppunitTest_dbaccess_empty_stdlib_save.mk 
b/dbaccess/CppunitTest_dbaccess_empty_stdlib_save.mk
new file mode 100644
index 000..408c0bf
--- /dev/null
+++ b/dbaccess/CppunitTest_dbaccess_empty_stdlib_save.mk
@@ -0,0 +1,119 @@
+# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
+#
+# This file is part of the LibreOffice project.
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+
+$(eval $(call gb_CppunitTest_CppunitTest,dbaccess_empty_stdlib_save))
+
+$(eval $(call gb_CppunitTest_add_exception_objects,dbaccess_empty_stdlib_save, 
\
+dbaccess/qa/extras/empty-stdlib-save \
+))
+
+$(eval $(call gb_CppunitTest_use_externals,dbaccess_empty_stdlib_save,\
+boost_headers \
+))
+
+$(eval $(call gb_CppunitTest_use_libraries,dbaccess_empty_stdlib_save, \
+basegfx \
+comphelper \
+cppu \
+cppuhelper \
+dba \
+dbu \
+sdbt \
+drawinglayer \
+editeng \
+for \
+forui \
+i18nlangtag \
+msfilter \
+oox \
+sal \
+salhelper \
+sax \
+sb \
+sfx \
+sot \
+svl \
+svt \
+svx \
+svxcore \
+test \
+subsequenttest \
+tl \
+tk \
+ucbhelper \
+   unotest \
+utl \
+vbahelper \
+vcl \
+xo \
+   $(gb_UWINAPI) \
+))
+
+$(eval $(call gb_CppunitTest_set_include,dbaccess_empty_stdlib_save,\
+$$(INCLUDE) \
+))
+
+$(eval $(call gb_CppunitTest_use_api,dbaccess_empty_stdlib_save,\
+offapi \
+oovbaapi \
+udkapi \
+))
+
+$(eval $(call gb_CppunitTest_use_ure,dbaccess_empty_stdlib_save))
+$(eval $(call gb_CppunitTest_use_vcl,dbaccess_empty_stdlib_save))
+
+$(eval $(call gb_CppunitTest_use_components,dbaccess_empty_stdlib_save,\
+basic/util/sb \
+comphelper/util/comphelp \
+configmgr/source/configmgr \
+dbaccess/util/dba \
+dbaccess/util/dbu \
+dbaccess/util/sdbt \
+dbaccess/source/filter/xml/dbaxml \
+filter/source/config/cache/filterconfig1 \
+forms/util/frm \
+framework/util/fwk \
+i18npool/util/i18npool \
+linguistic/source/lng \
+oox/util/oox \
+package/source/xstor/xstor \
+package/util/package2 \
+sax/source/expatwrap/expwrap \
+scripting/source/basprov/basprov \
+scripting/util/scriptframe \
+sfx2/util/sfx \
+sot/util/sot \
+svl/source/fsstor/fsstorage \
+svl/util/svl \
+toolkit/util/tk \
+ucb/source/core/ucb1 \
+ucb/source/ucp/file/ucpfile1 \
+ucb/source/ucp/tdoc/ucptdoc1 \
+unotools/util/utl \
+unoxml/source/rdf/unordf \
+unoxml/source/service/unoxml \
+xmloff/util/xo \
+))
+
+$(eval $(call gb_CppunitTest_use_configuration,dbaccess_empty_stdlib_save))
+
+$(eval $(call 
gb_CppunitTest_use_filter_configuration,dbaccess_empty_stdlib_save))
+
+$(eval $(call 
gb_CppunitTest_use_unittest_configuration,dbaccess_empty_stdlib_save))
+
+$(call gb_CppunitTest_get_target,dbaccess_empty_stdlib_save) : 
$(WORKDIR)/CppunitTest/testEmptyStdlibSave.odb
+$(WORKDIR)/CppunitTest/testEmptyStdlibSave.odb : 
$(SRCDIR)/dbaccess/qa/extras/testdocuments/testDialogSave.odb
+   mkdir -p $(dir $@)
+   cp -P -f $ $@
+.PHONY: $(WORKDIR)/CppunitTest/testEmptyStdlibSave.odb
+
+$(call gb_CppunitTest_get_target,dbaccess_empty_stdlib_save): \
+$(call gb_AllLangResTarget_get_target,ofa)
+
+# vim: set noet sw=4 ts=4:
diff --git a/dbaccess/CppunitTest_dbaccess_nolib_save.mk 
b/dbaccess/CppunitTest_dbaccess_nolib_save.mk
new file mode 100644
index 000..6684d72
--- /dev/null
+++ b/dbaccess/CppunitTest_dbaccess_nolib_save.mk
@@ -0,0 +1,119 @@
+# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
+#
+# This file is part of the LibreOffice project.
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+
+$(eval $(call gb_CppunitTest_CppunitTest,dbaccess_nolib_save))
+
+$(eval $(call gb_CppunitTest_add_exception_objects,dbaccess_nolib_save, \
+

[Libreoffice-commits] core.git: Branch 'libreoffice-4-3' - sfx2/sdi sfx2/source

2014-09-04 Thread Maxim Monastirsky
 sfx2/sdi/sfx.sdi |2 +-
 sfx2/source/view/viewfrm.cxx |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit c56af9da2ebd1cc060fff01cb78e80eb69100cfb
Author: Maxim Monastirsky momonas...@gmail.com
Date:   Thu Aug 7 23:53:04 2014 +0300

fdo#82278 SfxUInt16Item - SfxInt16Item

A regression of 2245288574ef77b09416872326b4543c82790815.
VerbID can be negative.

Change-Id: Ib242376696346ab310031d1b7c5c74362fb4b3d1
Reviewed-on: https://gerrit.libreoffice.org/10823
Reviewed-by: Maxim Monastirsky momonas...@gmail.com
Tested-by: Maxim Monastirsky momonas...@gmail.com
(cherry picked from commit 154c20cb320fb62cdd54cd248c3b981acc3903c8)
Reviewed-on: https://gerrit.libreoffice.org/10858
Reviewed-by: Christian Lohmaier lohmaier+libreoff...@googlemail.com
Tested-by: Christian Lohmaier lohmaier+libreoff...@googlemail.com

diff --git a/sfx2/sdi/sfx.sdi b/sfx2/sdi/sfx.sdi
index 4302753..4ce0378 100644
--- a/sfx2/sdi/sfx.sdi
+++ b/sfx2/sdi/sfx.sdi
@@ -4235,7 +4235,7 @@ SfxVoidItem ObjectCatalog SID_BASICIDE_OBJCAT
 
 
 SfxStringItem ObjectMenue SID_OBJECT
-(SfxUInt16Item VerbID SID_OBJECT)
+(SfxInt16Item VerbID SID_OBJECT)
 [
 /* flags: */
 AutoUpdate = FALSE,
diff --git a/sfx2/source/view/viewfrm.cxx b/sfx2/source/view/viewfrm.cxx
index 84d0a71..33e7d4c 100644
--- a/sfx2/source/view/viewfrm.cxx
+++ b/sfx2/source/view/viewfrm.cxx
@@ -2279,7 +2279,7 @@ void SfxViewFrame::ExecView_Impl
 
 case SID_OBJECT:
 {
-SFX_REQUEST_ARG( rReq, pItem, SfxUInt16Item, SID_OBJECT, false );
+SFX_REQUEST_ARG( rReq, pItem, SfxInt16Item, SID_OBJECT, false );
 
 SfxViewShell *pViewShell = GetViewShell();
 if ( pViewShell  pItem )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-4-3' - postprocess/Rdb_services.mk Repository.mk shell/Module_shell.mk

2014-09-04 Thread Tor Lillqvist
 Repository.mk   |2 +-
 postprocess/Rdb_services.mk |2 +-
 shell/Module_shell.mk   |   11 +--
 3 files changed, 11 insertions(+), 4 deletions(-)

New commits:
commit 5496d431f991ce9e8e0dc953d2cb1d40db899ee0
Author: Tor Lillqvist t...@collabora.com
Date:   Mon Aug 11 11:42:33 2014 +0300

fdo#82038: Make sending email from LO work again on OS X

Do build the cmdmail library, the uri-encode executable and do install
the senddoc script for OS X, too.

Note that in order for it to work, one needs to set the E-mail
program in Preferences:Internet:E-mail to /Applications/Mail.app. (Or
possibly some other application and/or executable.)

Change-Id: I5764c9891865983d46081edc854e321643c296cc
(cherry picked from commit a59e2d4f05679142f10950c15a78b952ef0aac9e)
Reviewed-on: https://gerrit.libreoffice.org/11257
Reviewed-by: Alexander Werner bundeswer...@gmail.com
Tested-by: Alexander Werner bundeswer...@gmail.com

diff --git a/Repository.mk b/Repository.mk
index 9a56d6a..326c2f1 100644
--- a/Repository.mk
+++ b/Repository.mk
@@ -233,7 +233,7 @@ $(eval $(call 
gb_Helper_register_libraries_for_install,OOOLIBS,ooo, \
chartcore \
chartcontroller \
chartopengl \
-   $(if $(filter $(OS),MACOSX WNT),,cmdmail) \
+   $(if $(filter $(OS),WNT),,cmdmail) \
cppcanvas \
configmgr \
ctl \
diff --git a/postprocess/Rdb_services.mk b/postprocess/Rdb_services.mk
index a1fe9bc..06906d9 100644
--- a/postprocess/Rdb_services.mk
+++ b/postprocess/Rdb_services.mk
@@ -331,7 +331,7 @@ $(eval $(call gb_Rdb_add_components,services,\
extensions/source/update/feed/updatefeed \
xmlhelp/util/ucpchelp1 \
xmlsecurity/util/xsec_xmlsec$(if $(filter WNT,$(OS)),.windows) \
-   $(if $(filter-out MACOSX WNT,$(OS)),\
+   $(if $(filter-out WNT,$(OS)),\
shell/source/cmdmail/cmdmail \
) \
$(if $(filter-out WNT,$(OS)),\
diff --git a/shell/Module_shell.mk b/shell/Module_shell.mk
index 15ab847..3c51964 100644
--- a/shell/Module_shell.mk
+++ b/shell/Module_shell.mk
@@ -115,12 +115,19 @@ ifneq ($(filter-out MACOSX WNT,$(OS)),)
 
 $(eval $(call gb_Module_add_targets,shell,\
Executable_gnome_open_url \
-   Executable_uri_encode \
-   Library_cmdmail \
Library_recentfile \
Package_scripts \
Package_scripts_gnome \
Package_scripts_kde \
+))
+
+endif
+
+ifneq ($(OS),WNT)
+
+$(eval $(call gb_Module_add_targets,shell,\
+   Executable_uri_encode \
+   Library_cmdmail \
Package_senddoc \
 ))
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2014-09-04 Thread Miklos Vajna
 sw/inc/unobaseclass.hxx |1 +
 1 file changed, 1 insertion(+)

New commits:
commit daddd329f8d4768a022d1aef51d2e65790c2944e
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Thu Sep 4 13:19:38 2014 +0200

sw::UnoImplPtr: add doxygen documentation

Change-Id: I336918d2aea005b7121a8f4a498bffd8b7b87899

diff --git a/sw/inc/unobaseclass.hxx b/sw/inc/unobaseclass.hxx
index e4275ca..cfd503e 100644
--- a/sw/inc/unobaseclass.hxx
+++ b/sw/inc/unobaseclass.hxx
@@ -89,6 +89,7 @@ void ClientModify(SwClient* pClient, const SfxPoolItem *pOld, 
const SfxPoolItem
 
 namespace sw {
 
+/// Smart pointer class ensuring that the pointed object is deleted with a 
locked SolarMutex.
 templatetypename T class UnoImplPtr
 : private ::boost::noncopyable
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: jurt/Library_jpipe.mk

2014-09-04 Thread Stephan Bergmann
 jurt/Library_jpipe.mk |   11 ++-
 1 file changed, 10 insertions(+), 1 deletion(-)

New commits:
commit 52821cd8dc62a2287153dcd413377539bb070ae0
Author: Stephan Bergmann sberg...@redhat.com
Date:   Thu Sep 4 14:10:12 2014 +0200

Fix condition

Change-Id: I8e70a62959dbeecd571c15c5b6fac1a41511a3f6

diff --git a/jurt/Library_jpipe.mk b/jurt/Library_jpipe.mk
index 2ca6cb7..6d1512e 100644
--- a/jurt/Library_jpipe.mk
+++ b/jurt/Library_jpipe.mk
@@ -21,7 +21,15 @@ $(eval $(call gb_Library_add_cobjects,jpipe,\
 jurt/source/pipe/wrapper/wrapper \
 ))
 
-else ifeq ($(COM_GCC_IS_CLANG)$(filter -fsanitize=%,%(gb_CC)),)
+else
+
+ifeq ($(COM_GCC_IS_CLANG),TRUE)
+ifneq ($(filter -fsanitize=%,$(gb_CC)),)
+Library_jpipe__staticsalhack = TRUE
+endif
+endif
+
+ifeq ($(Library_jpipe__staticsalhack),)
 
 $(eval $(call gb_Library_use_libraries,jpipe,\
 sal \
@@ -75,5 +83,6 @@ $(call gb_LinkTarget_get_target,$(call 
gb_Library_get_linktarget,jpipe)): \
 gb_CXX := $(filter-out -fsanitize=%,$(gb_CXX))
 
 endif
+endif
 
 # vim:set noet sw=4 ts=4:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-4-3' - sc/source

2014-09-04 Thread Eike Rathke
 sc/source/filter/oox/workbookhelper.cxx |2 +
 sc/source/ui/app/scmod.cxx  |6 ++-
 sc/source/ui/docshell/docsh.cxx |2 +
 sc/source/ui/docshell/docsh3.cxx|2 -
 sc/source/ui/docshell/docsh6.cxx|   60 +---
 sc/source/ui/inc/docsh.hxx  |2 -
 6 files changed, 51 insertions(+), 23 deletions(-)

New commits:
commit a9969503d7a95bf266099466ca08f732f1251c03
Author: Eike Rathke er...@redhat.com
Date:   Thu Aug 21 23:14:52 2014 +0200

fdo#82183 do not reset globals while loading a document

Destroying the function list while an instance of the Formula Wizard is
still open is a bad idea. Workaround not doing this when loading a
document due to a DDE function or external reference being entered in
the wizard.

(cherry picked from commit c0aba5007b6e468336b41138f099914c32f4b0cf)

init formula options once, fdo#82183

(cherry picked from commit 10b6bda51c9da5429ca562c70ce75ee03e5f4e56)

Change-Id: I6fa00fb4f442bf7c9410679e446ff460289e4b16
Reviewed-on: https://gerrit.libreoffice.org/11063
Reviewed-by: Christian Lohmaier lohmaier+libreoff...@googlemail.com
Tested-by: Christian Lohmaier lohmaier+libreoff...@googlemail.com

diff --git a/sc/source/filter/oox/workbookhelper.cxx 
b/sc/source/filter/oox/workbookhelper.cxx
index 59c87c5..1e6d319 100644
--- a/sc/source/filter/oox/workbookhelper.cxx
+++ b/sc/source/filter/oox/workbookhelper.cxx
@@ -681,6 +681,8 @@ void WorkbookGlobals::recalcFormulaCells()
 
officecfg::Office::Calc::Formula::Load::OOXMLRecalcMode::set(sal_Int32(0), 
batch);
 ScFormulaOptions aOpt = SC_MOD()-GetFormulaOptions();
 aOpt.SetOOXMLRecalcOptions(bHardRecalc ? RECALC_ALWAYS : 
RECALC_NEVER);
+/* XXX  is this really supposed to set the ScModule options?
+ *  Not the ScDocShell options? */
 SC_MOD()-SetFormulaOptions(aOpt);
 
 batch-commit();
diff --git a/sc/source/ui/app/scmod.cxx b/sc/source/ui/app/scmod.cxx
index dc97b24..9f4a7e9 100644
--- a/sc/source/ui/app/scmod.cxx
+++ b/sc/source/ui/app/scmod.cxx
@@ -1053,13 +1053,15 @@ void ScModule::ModifyOptions( const SfxItemSet rOptSet 
)
 if (pFormulaCfg  pFormulaCfg-GetCalcConfig() != 
rOpt.GetCalcConfig())
 bCalcAll = true;
 
-SetFormulaOptions( rOpt );
-
 if ( pDocSh )
 {
 pDocSh-SetFormulaOptions( rOpt );
 pDocSh-SetDocumentModified();
 }
+
+// ScDocShell::SetFormulaOptions() may check for changed settings, so
+// set the new options here after that has been called.
+SetFormulaOptions( rOpt );
 }
 
 
diff --git a/sc/source/ui/docshell/docsh.cxx b/sc/source/ui/docshell/docsh.cxx
index 79a499b..d44d49f 100644
--- a/sc/source/ui/docshell/docsh.cxx
+++ b/sc/source/ui/docshell/docsh.cxx
@@ -486,6 +486,8 @@ bool ScDocShell::LoadXML( SfxMedium* pLoadMedium, const 
::com::sun::star::uno::R
 
officecfg::Office::Calc::Formula::Load::ODFRecalcMode::set(sal_Int32(0), batch);
 ScFormulaOptions aOpt = SC_MOD()-GetFormulaOptions();
 aOpt.SetODFRecalcOptions(bHardRecalc ? RECALC_ALWAYS : 
RECALC_NEVER);
+/* XXX  is this really supposed to set the ScModule options?
+ *  Not the ScDocShell options? */
 SC_MOD()-SetFormulaOptions(aOpt);
 
 batch-commit();
diff --git a/sc/source/ui/docshell/docsh3.cxx b/sc/source/ui/docshell/docsh3.cxx
index f297c53..1b1f9a6 100644
--- a/sc/source/ui/docshell/docsh3.cxx
+++ b/sc/source/ui/docshell/docsh3.cxx
@@ -428,7 +428,7 @@ void ScDocShell::InitOptions(bool bForLoading)  // 
called from InitNew and L
 
 aDocument.SetDocOptions( aDocOpt );
 aDocument.SetViewOptions( aViewOpt );
-SetFormulaOptions( aFormulaOpt );
+SetFormulaOptions( aFormulaOpt, bForLoading );
 
 //  Druck-Optionen werden jetzt direkt vor dem Drucken gesetzt
 
diff --git a/sc/source/ui/docshell/docsh6.cxx b/sc/source/ui/docshell/docsh6.cxx
index 7dd8d0e..988dafd 100644
--- a/sc/source/ui/docshell/docsh6.cxx
+++ b/sc/source/ui/docshell/docsh6.cxx
@@ -451,32 +451,54 @@ bool ScDocShell::ReloadTabLinks()
 return true;//! Fehler erkennen
 }
 
-void ScDocShell::SetFormulaOptions(const ScFormulaOptions rOpt )
+void ScDocShell::SetFormulaOptions( const ScFormulaOptions rOpt, bool 
bForLoading )
 {
 aDocument.SetGrammar( rOpt.GetFormulaSyntax() );
 
-// This needs to be called first since it may re-initialize the entire
-// opcode map.
-if (rOpt.GetUseEnglishFuncName())
+// This is nasty because it resets module globals from within a docshell!
+// For actual damage caused see fdo#82183 where an unconditional
+// ScGlobal::ResetFunctionList() (without checking GetUseEnglishFuncName())
+// lead to a crash becasuse the function 

[Libreoffice-commits] core.git: Branch 'libreoffice-4-3' - avmedia/source configure.ac download.lst external/libgltf include/vcl RepositoryExternal.mk vcl/source

2014-09-04 Thread Zolnai Tamás
 RepositoryExternal.mk|8 
 avmedia/source/opengl/oglframegrabber.hxx|4 --
 avmedia/source/opengl/oglplayer.cxx  |   16 +++-
 avmedia/source/opengl/oglplayer.hxx  |6 +--
 avmedia/source/opengl/oglwindow.cxx  |   36 +-
 avmedia/source/opengl/oglwindow.hxx  |6 ---
 configure.ac |2 -
 download.lst |4 +-
 external/libgltf/ExternalProject_libgltf.mk  |2 +
 external/libgltf/UnpackedTarball_libgltf.mk  |2 -
 external/libgltf/pathces/append_shader_version.patch |   37 ---
 external/libgltf/pathces/missing_include.patch   |   11 -
 include/vcl/opengl/OpenGLContext.hxx |2 +
 vcl/source/opengl/OpenGLContext.cxx  |5 ++
 14 files changed, 48 insertions(+), 93 deletions(-)

New commits:
commit d431986bd49081581e86444af124d1d2ce90a407
Author: Zolnai Tamás tamas.zol...@collabora.com
Date:   Fri Aug 29 22:41:26 2014 +0200

Upgrade libgltf to 0.0.1

News in this version:
- Solve some limitations of walkthrough mode (fdo#81425)
- Multisampling (better rendering quality, mainly at the edges)
- Better error handling (no crash in case of invalid input file)

Reviewed-on: https://gerrit.libreoffice.org/11179
Reviewed-by: Zolnai Tamás tamas.zol...@collabora.com
Tested-by: Zolnai Tamás tamas.zol...@collabora.com

Conflicts:
download.lst
external/libgltf/UnpackedTarball_libgltf.mk
external/libgltf/pathces/append_shader_version.patch
external/libgltf/pathces/missing_include.patch
vcl/source/opengl/OpenGLContext.cxx

Change-Id: I46fdf56b00476614487fbcc04178e43e33a01794
Reviewed-on: https://gerrit.libreoffice.org/11194
Reviewed-by: Christian Lohmaier lohmaier+libreoff...@googlemail.com
Tested-by: Christian Lohmaier lohmaier+libreoff...@googlemail.com

diff --git a/RepositoryExternal.mk b/RepositoryExternal.mk
index cd99108..f194fcb 100644
--- a/RepositoryExternal.mk
+++ b/RepositoryExternal.mk
@@ -3303,11 +3303,6 @@ $(call gb_LinkTarget_use_external_project,$(1),libgltf)
 
 endef
 
-define gb_ExternalProject__use_libgltf
-$(call gb_ExternalProject_use_external_project,$(1),libgltf)
-
-endef
-
 else # SYSTEM_LIBGLTF
 
 define gb_LinkTarget__use_libgltf
@@ -3316,9 +3311,6 @@ $(call gb_LinkTarget_set_include,$(1),\
$(LIBGLTF_CFLAGS) \
 )
 $(call gb_LinkTarget_add_libs,$(1),$(LIBGLTF_LIBS))
-$(call gb_LinkTarget_add_defs,$(1),\
-   -DSYSTEM_LIBGLTF \
-)
 
 endef
 
diff --git a/avmedia/source/opengl/oglframegrabber.hxx 
b/avmedia/source/opengl/oglframegrabber.hxx
index 0d38224..5beb15b 100644
--- a/avmedia/source/opengl/oglframegrabber.hxx
+++ b/avmedia/source/opengl/oglframegrabber.hxx
@@ -14,11 +14,7 @@
 #include com/sun/star/lang/XServiceInfo.hpp
 #include com/sun/star/media/XFrameGrabber.hpp
 
-#ifdef SYSTEM_LIBGLTF
-#include libgltf/libgltf.h
-#else
 #include libgltf.h
-#endif
 
 namespace avmedia { namespace ogl {
 
diff --git a/avmedia/source/opengl/oglplayer.cxx 
b/avmedia/source/opengl/oglplayer.cxx
index a052dc9..d2e600b 100644
--- a/avmedia/source/opengl/oglplayer.cxx
+++ b/avmedia/source/opengl/oglplayer.cxx
@@ -269,6 +269,12 @@ uno::Reference media::XPlayerWindow  SAL_CALL 
OGLPlayer::createPlayerWindow( c
 return uno::Reference media::XPlayerWindow ();
 }
 
+if( !m_aContext.supportMultiSampling() )
+{
+SAL_WARN(avmedia.opengl, Context does not support multisampling!);
+return uno::Reference media::XPlayerWindow ();
+}
+
 if( !lcl_CheckOpenGLRequirements() )
 {
 SAL_WARN(avmedia.opengl, Your platform does not have the minimal 
OpenGL requiremenets!);
@@ -287,7 +293,7 @@ uno::Reference media::XPlayerWindow  SAL_CALL 
OGLPlayer::createPlayerWindow( c
 releaseInputFiles();
 if( nRet != 0 )
 {
-SAL_WARN(avmedia.opengl, Error occured while parsing *.json file! 
Error code:   nRet);
+SAL_WARN(avmedia.opengl, Error occured while setting up the scene! 
Error code:   nRet);
 return uno::Reference media::XPlayerWindow ();
 }
 // The background color is white by default, but we need to separate the
@@ -309,6 +315,12 @@ uno::Reference media::XFrameGrabber  SAL_CALL 
OGLPlayer::createFrameGrabber()
 return uno::Reference media::XFrameGrabber ();
 }
 
+if( !m_aContext.supportMultiSampling() )
+{
+SAL_WARN(avmedia.opengl, Context does not support multisampling!);
+return uno::Reference media::XFrameGrabber ();
+}
+
 if( !lcl_CheckOpenGLRequirements() )
 {
 SAL_WARN(avmedia.opengl, Your platform does not have the minimal 
OpenGL requiremenets!);
@@ -324,7 +336,7 @@ uno::Reference media::XFrameGrabber  SAL_CALL 
OGLPlayer::createFrameGrabber()
 

[Bug 79641] LibreOffice 4.4 most annoying bugs

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79641

--- Comment #9 from Joel Madero jmadero@gmail.com ---
Added bug 83174 - regression + crasher
Something is going on with the interaction with sections and the table of
contents where if an entry in the TOC is removed and then you try to export as
PDF you get a crash. Native ODF file

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


[Libreoffice-commits] core.git: bridges/Library_cpp_uno.mk

2014-09-04 Thread Stephan Bergmann
 bridges/Library_cpp_uno.mk |9 -
 1 file changed, 8 insertions(+), 1 deletion(-)

New commits:
commit 8d12e4ec8b843d59661a12a7a92bfec7e4473e0f
Author: Stephan Bergmann sberg...@redhat.com
Date:   Thu Sep 4 15:26:58 2014 +0200

No -fstack-protect-strong for gcc3_linux_aarch64/cpp2uno.cxx vtableSlotCall

Change-Id: I52efda594d87c37c2d38c61b54f1eebcc76cdfce

diff --git a/bridges/Library_cpp_uno.mk b/bridges/Library_cpp_uno.mk
index 33a5c00..c2e303d 100644
--- a/bridges/Library_cpp_uno.mk
+++ b/bridges/Library_cpp_uno.mk
@@ -38,7 +38,14 @@ endif
 else ifneq (,$(filter ANDROID-AARCH64 LINUX-AARCH64,$(OS)-$(CPUNAME)))
 
 bridges_SELECTED_BRIDGE := gcc3_linux_aarch64
-bridge_exception_objects := abi callvirtualfunction cpp2uno uno2cpp
+bridge_exception_objects := abi callvirtualfunction uno2cpp
+
+$(eval $(call gb_Library_add_cxxobjects,$(gb_CPPU_ENV)_uno, \
+bridges/source/cpp_uno/$(bridges_SELECTED_BRIDGE)/cpp2uno, \
+$(subst -fstack-protector-strong,-fstack-protector, \
+$(gb_LinkTarget_EXCEPTIONFLAGS) \
+$(call gb_LinkTarget__get_cxxflags,$(gb_CPPU_ENV)_uno)) \
+))
 
 else ifeq ($(OS)-$(CPUNAME),LINUX-AXP)
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: 2 commits - connectivity/source include/connectivity sw/qa

2014-09-04 Thread Norbert Thiebaud
 connectivity/source/parse/sqlbison.y|   70 ++--
 connectivity/source/parse/sqlnode.cxx   |1 
 include/connectivity/sqlnode.hxx|1 
 sw/qa/extras/ooxmlexport/ooxmlsdrexport.cxx |2 
 4 files changed, 49 insertions(+), 25 deletions(-)

New commits:
commit a62a046df3302e5763b7a568ac25032bb1501d44
Author: Norbert Thiebaud nthieb...@gmail.com
Date:   Thu Sep 4 15:39:21 2014 +0200

fdo#55703 automagically use IS NULL fo 'null' in query design.

Change-Id: I31bcec74a786df016d994834e6146fb7a76e72cb

diff --git a/connectivity/source/parse/sqlbison.y 
b/connectivity/source/parse/sqlbison.y
index 5d2e183..44f962e 100644
--- a/connectivity/source/parse/sqlbison.y
+++ b/connectivity/source/parse/sqlbison.y
@@ -645,6 +645,7 @@ manipulative_statement_list:
 ***/
 
 sql_not:
+/* vide */
{$$ = SQL_NEW_RULE;}
|   SQL_TOKEN_NOT
;
@@ -1091,28 +1092,49 @@ boolean_primary:
}
|   row_value_constructor_elem  /*[^')' ',']*/
{
-   if(xxx_pGLOBAL_SQLPARSER-inPredicateCheck())// 
boolean_primary: rule 3
-   {
-   $$ = SQL_NEW_RULE;
-   sal_Int16 nErg = 
xxx_pGLOBAL_SQLPARSER-buildComparsionRule($$,$1);
-   if(nErg == 1)
-   {
-   OSQLParseNode* pTemp = $$;
-   $$ = pTemp-removeAt((sal_uInt32)0);
-   delete pTemp;
-   }
-   else
-   {
-   delete $$;
-   if(nErg)
-   YYERROR;
-   else
-   YYABORT;
-   }
-   }
-   else
-   YYERROR;
-   }
+if(xxx_pGLOBAL_SQLPARSER-inPredicateCheck())// 
boolean_primary: rule 3
+{
+$$ = SQL_NEW_RULE;
+sal_Int16 nErg = 0;
+if ( SQL_ISTOKEN( $1, NULL))
+{
+OSQLParseNode* pColumnRef = newNode(, 
SQL_NODE_RULE,OSQLParser::RuleID(OSQLParseNode::column_ref));
+
pColumnRef-append(newNode(xxx_pGLOBAL_SQLPARSER-getFieldName(),SQL_NODE_NAME));
+OSQLParseNode* pTFN = new OSQLInternalNode(, 
SQL_NODE_RULE,OSQLParser::RuleID(OSQLParseNode::test_for_null));
+pTFN-append(pColumnRef);
+
+OSQLParseNode* pNPP2 = new OSQLInternalNode(, 
SQL_NODE_RULE, OSQLParser::RuleID(OSQLParseNode::null_predicate_part_2));
+pNPP2-append(new OSQLInternalNode(, 
SQL_NODE_KEYWORD, SQL_TOKEN_IS));
+pNPP2-append(new OSQLInternalNode(, 
SQL_NODE_RULE, OSQLParser::RuleID(OSQLParseNode::sql_not)));
+pNPP2-append(new OSQLInternalNode(, 
SQL_NODE_KEYWORD, SQL_TOKEN_NULL));
+pTFN-append(pNPP2);
+
+$$-append(pTFN);
+
+nErg = 1;
+}
+else
+{
+nErg = 
xxx_pGLOBAL_SQLPARSER-buildComparsionRule($$,$1);
+}
+if(nErg == 1)
+{
+OSQLParseNode* pTemp = $$;
+$$ = pTemp-removeAt((sal_uInt32)0);
+delete pTemp;
+}
+else
+{
+delete $$;
+if(nErg)
+YYERROR;
+else
+YYABORT;
+}
+}
+else
+YYERROR;
+}
;
 parenthesized_boolean_value_expression:
'(' search_condition ')'
@@ -4746,8 +4768,8 @@ sal_Int16 OSQLParser::buildStringNodes(OSQLParseNode* 
pLiteral)
 
 sal_Int16 OSQLParser::buildComparsionRule(OSQLParseNode* 
pAppend,OSQLParseNode* pLiteral)
 {
-   OSQLParseNode* pComp = new OSQLInternalNode(=, SQL_NODE_EQUAL);
-   return buildPredicateRule(pAppend,pLiteral,pComp);
+OSQLParseNode* pComp = new OSQLInternalNode(=, SQL_NODE_EQUAL);
+return buildPredicateRule(pAppend,pLiteral,pComp);
 }
 
 
diff --git a/connectivity/source/parse/sqlnode.cxx 
b/connectivity/source/parse/sqlnode.cxx
index 19f8257..c20ad86 100644
--- a/connectivity/source/parse/sqlnode.cxx
+++ b/connectivity/source/parse/sqlnode.cxx
@@ -1448,6 +1448,7 @@ 

[Libreoffice-commits] core.git: Branch 'libreoffice-4-3' - translations

2014-09-04 Thread Christian Lohmaier
 translations |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 9448bf9182ffd4280cc17d9e5572934871a5c035
Author: Christian Lohmaier lohmaier+libreoff...@googlemail.com
Date:   Thu Sep 4 15:14:31 2014 +0200

Updated core
Project: translations  f4203447b3707ebf5338530074831420cc2d9234

diff --git a/translations b/translations
index a39b373..f420344 16
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit a39b373518e38da2ad4f1b8b6255e28c269571e3
+Subproject commit f4203447b3707ebf5338530074831420cc2d9234
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: sc/inc sc/qa sc/source

2014-09-04 Thread Noel Grandin
 sc/inc/clipcontext.hxx  |   12 ++---
 sc/inc/column.hxx   |   12 ++---
 sc/inc/document.hxx |   34 +++---
 sc/inc/global.hxx   |   84 +++-
 sc/inc/scabstdlg.hxx|8 +--
 sc/inc/table.hxx|   10 ++--
 sc/qa/unit/ucalc.cxx|4 -
 sc/source/core/data/clipcontext.cxx |4 -
 sc/source/core/data/column.cxx  |   42 +-
 sc/source/core/data/column3.cxx |   32 ++---
 sc/source/core/data/column4.cxx |   14 +++---
 sc/source/core/data/documen3.cxx|2 
 sc/source/core/data/document.cxx|   40 -
 sc/source/core/data/document10.cxx  |   14 +++---
 sc/source/core/data/table2.cxx  |   12 ++---
 sc/source/core/data/table4.cxx  |2 
 sc/source/ui/attrdlg/scdlgfact.cxx  |8 +--
 sc/source/ui/attrdlg/scdlgfact.hxx  |8 +--
 sc/source/ui/docshell/dbdocimp.cxx  |2 
 sc/source/ui/docshell/docfunc.cxx   |6 +-
 sc/source/ui/docshell/impex.cxx |6 +-
 sc/source/ui/inc/delcodlg.hxx   |6 +-
 sc/source/ui/inc/docfunc.hxx|2 
 sc/source/ui/inc/inscodlg.hxx   |8 +--
 sc/source/ui/inc/undoblk.hxx|   16 +++---
 sc/source/ui/inc/undodat.hxx|4 -
 sc/source/ui/inc/viewfunc.hxx   |   16 +++---
 sc/source/ui/miscdlgs/delcodlg.cxx  |   10 ++--
 sc/source/ui/miscdlgs/inscodlg.cxx  |   13 +++--
 sc/source/ui/undo/undoblk.cxx   |   10 ++--
 sc/source/ui/undo/undoblk3.cxx  |   12 ++---
 sc/source/ui/undo/undodat.cxx   |6 +-
 sc/source/ui/unoobj/cellsuno.cxx|4 -
 sc/source/ui/vba/excelvbahelper.cxx |2 
 sc/source/ui/vba/excelvbahelper.hxx |2 
 sc/source/ui/vba/vbarange.cxx   |9 +--
 sc/source/ui/view/cellsh1.cxx   |8 +--
 sc/source/ui/view/cliputil.cxx  |2 
 sc/source/ui/view/viewfun2.cxx  |2 
 sc/source/ui/view/viewfun3.cxx  |   24 +-
 sc/source/ui/view/viewfunc.cxx  |4 -
 41 files changed, 279 insertions(+), 237 deletions(-)

New commits:
commit 8e4dc1d760d85e09bbc3f3bbb5b8be2947db1b63
Author: Noel Grandin n...@peralex.com
Date:   Fri Aug 22 15:15:17 2014 +0200

create type-safe bitfield for sc insert/delete flags

The most important part of the change is in sc/inc/global.hxx

It creates a type-safe struct that prevents the accidental interaction
between regular integer types and the flags struct.
It also provides utility methods that make combining and testing the
flags type-safe.

Change-Id: Ibc5b20058b1655df913490682b679afd1297b36d
Reviewed-on: https://gerrit.libreoffice.org/11071
Reviewed-by: Eike Rathke er...@redhat.com
Tested-by: Eike Rathke er...@redhat.com

diff --git a/sc/inc/clipcontext.hxx b/sc/inc/clipcontext.hxx
index 7a2eb44..4017dda 100644
--- a/sc/inc/clipcontext.hxx
+++ b/sc/inc/clipcontext.hxx
@@ -52,8 +52,8 @@ class CopyFromClipContext : public ClipContextBase
 SCTAB mnTabEnd;
 ScDocument* mpRefUndoDoc;
 ScDocument* mpClipDoc;
-sal_uInt16 mnInsertFlag;
-sal_uInt16 mnDeleteFlag;
+InsertDeleteFlags mnInsertFlag;
+InsertDeleteFlags mnDeleteFlag;
 ScCellValue maSingleCell;
 ScConditionalFormatList* mpCondFormatList;
 const ScPatternAttr* mpSinglePattern;
@@ -76,7 +76,7 @@ public:
 };
 
 CopyFromClipContext(ScDocument rDoc,
-ScDocument* pRefUndoDoc, ScDocument* pClipDoc, sal_uInt16 nInsertFlag,
+ScDocument* pRefUndoDoc, ScDocument* pClipDoc, InsertDeleteFlags 
nInsertFlag,
 bool bAsLink, bool bSkipAttrForEmptyCells);
 
 virtual ~CopyFromClipContext();
@@ -91,10 +91,10 @@ public:
 
 ScDocument* getUndoDoc() { return mpRefUndoDoc;}
 ScDocument* getClipDoc() { return mpClipDoc;}
-sal_uInt16 getInsertFlag() const { return mnInsertFlag;}
+InsertDeleteFlags getInsertFlag() const { return mnInsertFlag;}
 
-void setDeleteFlag( sal_uInt16 nFlag );
-sal_uInt16 getDeleteFlag() const { return mnDeleteFlag;}
+void setDeleteFlag( InsertDeleteFlags nFlag );
+InsertDeleteFlags getDeleteFlag() const { return mnDeleteFlag;}
 
 ScCellValue getSingleCell() { return maSingleCell;}
 
diff --git a/sc/inc/column.hxx b/sc/inc/column.hxx
index a14a43f..893ef13 100644
--- a/sc/inc/column.hxx
+++ b/sc/inc/column.hxx
@@ -229,8 +229,8 @@ public:
 voidInsertRow( SCROW nStartRow, SCSIZE nSize );
 voidDeleteRow( SCROW nStartRow, SCSIZE nSize );
 void DeleteArea(
-SCROW nStartRow, SCROW nEndRow, sal_uInt16 nDelFlag, bool bBroadcast = 
true );
-void DeleteRanges( const std::vectorsc::RowSpan rRanges, sal_uInt16 
nDelFlag, bool bBroadcast );
+SCROW nStartRow, SCROW nEndRow, InsertDeleteFlags nDelFlag, bool 
bBroadcast = true );
+void DeleteRanges( const std::vectorsc::RowSpan rRanges, 
InsertDeleteFlags nDelFlag, bool bBroadcast );
 
 void CopyToClip(
 

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

2014-09-04 Thread rbuj
 xmerge/source/xmerge/java/org/openoffice/xmerge/Convert.java   
   |  166 +--
 xmerge/source/xmerge/java/org/openoffice/xmerge/ConvertData.java   
   |   52 -
 xmerge/source/xmerge/java/org/openoffice/xmerge/ConvertException.java  
   |   10 
 xmerge/source/xmerge/java/org/openoffice/xmerge/ConverterCapabilities.java 
   |   40 
 xmerge/source/xmerge/java/org/openoffice/xmerge/ConverterFactory.java  
   |   50 -
 xmerge/source/xmerge/java/org/openoffice/xmerge/Document.java  
   |   62 -
 xmerge/source/xmerge/java/org/openoffice/xmerge/DocumentDeserializer.java  
   |   40 
 xmerge/source/xmerge/java/org/openoffice/xmerge/DocumentDeserializer2.java 
   |   50 -
 
xmerge/source/xmerge/java/org/openoffice/xmerge/DocumentDeserializerFactory.java
  |   41 
 xmerge/source/xmerge/java/org/openoffice/xmerge/DocumentMerger.java
   |   87 --
 xmerge/source/xmerge/java/org/openoffice/xmerge/DocumentMergerFactory.java 
   |   40 
 xmerge/source/xmerge/java/org/openoffice/xmerge/DocumentSerializer.java
   |   44 -
 xmerge/source/xmerge/java/org/openoffice/xmerge/DocumentSerializer2.java   
   |   54 -
 xmerge/source/xmerge/java/org/openoffice/xmerge/DocumentSerializerFactory.java 
   |   40 
 xmerge/source/xmerge/java/org/openoffice/xmerge/MergeException.java
   |   10 
 xmerge/source/xmerge/java/org/openoffice/xmerge/PluginFactory.java 
   |  196 ++--
 xmerge/source/xmerge/java/org/openoffice/xmerge/Version.java   
   |   27 
 xmerge/source/xmerge/java/org/openoffice/xmerge/converter/dom/DOMDocument.java 
   |  203 +---
 xmerge/source/xmerge/java/org/openoffice/xmerge/converter/palm/PalmDB.java 
   |  284 ++
 
xmerge/source/xmerge/java/org/openoffice/xmerge/converter/palm/PalmDocument.java
  |   87 --
 xmerge/source/xmerge/java/org/openoffice/xmerge/converter/palm/PdbDecoder.java 
   |   89 --
 xmerge/source/xmerge/java/org/openoffice/xmerge/converter/palm/PdbEncoder.java 
   |   86 -
 xmerge/source/xmerge/java/org/openoffice/xmerge/converter/palm/PdbHeader.java  
   |   83 -
 xmerge/source/xmerge/java/org/openoffice/xmerge/converter/palm/PdbUtil.java
   |   15 
 xmerge/source/xmerge/java/org/openoffice/xmerge/converter/palm/Record.java 
   |  109 --
 
xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/EmbeddedBinaryObject.java
   |   17 
 
xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/EmbeddedObject.java
 |   16 
 
xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/EmbeddedXMLObject.java
  |  102 +-
 
xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/OfficeConstants.java
|  117 +-
 
xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/OfficeDocument.java
 |  434 +++---
 
xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/OfficeDocumentException.java
|   35 
 xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/OfficeZip.java   
   |  194 +---
 xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/ParaStyle.java   
   |  237 ++---
 xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/Style.java   
   |  134 +--
 
xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/StyleCatalog.java 
  |  154 +--
 xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/TextStyle.java   
   |  232 ++---
 
xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/BookSettings.java
   |   68 -
 
xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/CellStyle.java
  |  125 +-
 
xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/ColumnRowInfo.java
  |   48 -
 
xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/ColumnStyle.java
|   95 +-
 
xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/DocumentMergerImpl.java
 |   42 
 xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/Format.java  
   |  174 +---
 
xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/NameDefinition.java
 |   80 -
 
xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/RowStyle.java 
  |   97 +-
 
xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/SheetSettings.java
  |  123 +-
 

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

2014-09-04 Thread Jennifer Liebel
 sw/source/filter/html/htmltab.cxx |  140 ++
 1 file changed, 67 insertions(+), 73 deletions(-)

New commits:
commit 4ee996a863406dd3499194513ec5fc4df7b5d360
Author: Jennifer Liebel jliebe...@gmail.com
Date:   Thu Sep 4 11:06:38 2014 +

fdo#39468: Translate German comments

Change-Id: Ia0a2a22353ad314617324e93b8a352ea306e3446
Reviewed-on: https://gerrit.libreoffice.org/11279
Reviewed-by: Miklos Vajna vmik...@collabora.co.uk
Tested-by: Miklos Vajna vmik...@collabora.co.uk

diff --git a/sw/source/filter/html/htmltab.cxx 
b/sw/source/filter/html/htmltab.cxx
index dd5f71f..12e5293 100644
--- a/sw/source/filter/html/htmltab.cxx
+++ b/sw/source/filter/html/htmltab.cxx
@@ -380,89 +380,83 @@ class HTMLTable
 sal_uInt16 nCols;   // number of columns
 sal_uInt16 nFilledCols; // number of filled columns
 
-sal_uInt16 nCurRow; // aktuelle Zeile
-sal_uInt16 nCurCol; // aktuelle Spalte
+sal_uInt16 nCurRow; // current Row
+sal_uInt16 nCurCol; // current Column
 
-sal_uInt16 nLeftMargin; // Abstand zum linken Rand (aus Absatz)
-sal_uInt16 nRightMargin;// Abstand zum rechten Rand (aus 
Absatz)
+sal_uInt16 nLeftMargin; // Space to the left margin (from 
passage)
+sal_uInt16 nRightMargin;// Space to the right margin (from 
passage)
 
-sal_uInt16 nCellPadding;// Abstand Umrandung zum Text
-sal_uInt16 nCellSpacing;// Abstand zwischen zwei Zellen
+sal_uInt16 nCellPadding;// Space from border to Text
+sal_uInt16 nCellSpacing;// Space between two cells
 sal_uInt16 nHSpace;
 sal_uInt16 nVSpace;
 
-sal_uInt16 nBoxes;  // Wievele Boxen enthaelt die Tabelle
+sal_uInt16 nBoxes;  // number of boxes in the table
 
-const SwStartNode *pPrevStNd;   // der Table-Node oder der Start-Node
-// der vorhergehenden Section
-const SwTable *pSwTable;// die SW-Tabelle (nur auf dem Top-Level)
-SwTableBox *pBox1;  // die TableBox, die beim Erstellen
-// der Top-Level-Tabelle angelegt wird
-
-SwTableBoxFmt *pBoxFmt; // das frame::Frame-Format einer SwTableBox
-SwTableLineFmt *pLineFmt;   // das frame::Frame-Format einer 
SwTableLine
+const SwStartNode *pPrevStNd;   // the Table-Node or the Start-Node of the 
section before
+const SwTable *pSwTable;// SW-Table (only on Top-Level)
+SwTableBox *pBox1;  // TableBox, generated when the 
Top-Level-Table was build
+SwTableBoxFmt *pBoxFmt; // frame::Frame-Format from SwTableBox
+SwTableLineFmt *pLineFmt;   // frame::Frame-Format from SwTableLine
 SwTableLineFmt *pLineFrmFmtNoHeight;
-SvxBrushItem *pBGBrush; // Hintergrund der Tabelle
-SvxBrushItem *pInhBGBrush;  // geerbter Hintergrund der Tabelle
-const SwStartNode *pCaptionStartNode;   // Start-Node der 
Tabellen-Ueberschrift
-
-SvxBorderLine aTopBorderLine;   // die Linie fuer die Umrandung
-SvxBorderLine aBottomBorderLine;// die Linie fuer die Umrandung
-SvxBorderLine aLeftBorderLine;  // die Linie fuer die Umrandung
-SvxBorderLine aRightBorderLine; // die Linie fuer die Umrandung
-SvxBorderLine aBorderLine;  // die Linie fuer die Umrandung
-SvxBorderLine aInhLeftBorderLine;   // die Linie fuer die Umrandung
-SvxBorderLine aInhRightBorderLine;  // die Linie fuer die Umrandung
-bool bTopBorder;// besitzt die Tabelle oben eine Linie
-bool bRightBorder;  // besitzt die Tabelle rechts eine Linie
-bool bTopAlwd;  // duerfen die Raender gesetzt werden?
+SvxBrushItem *pBGBrush; // background of the table
+SvxBrushItem *pInhBGBrush;  // inherited background of the table
+const SwStartNode *pCaptionStartNode;   // Start-Node of the table-caption
+//lines for the border
+SvxBorderLine aTopBorderLine;
+SvxBorderLine aBottomBorderLine;
+SvxBorderLine aLeftBorderLine;
+SvxBorderLine aRightBorderLine;
+SvxBorderLine aBorderLine;
+SvxBorderLine aInhLeftBorderLine;
+SvxBorderLine aInhRightBorderLine;
+bool bTopBorder;// is there a line on the top of the table
+bool bRightBorder;  // is there a line on the top right of the 
table
+bool bTopAlwd;  // is it allowed to set the border?
 bool bRightAlwd;
-bool bFillerTopBorder;  // bekommt eine linke/rechter Filler-
-bool bFillerBottomBorder;   // Zelle eine obere/untere Umrandung?
+bool bFillerTopBorder;  // gets the left/right filler-cell a 
border on the
+bool bFillerBottomBorder;   // top or in the bottom
 bool bInhLeftBorder;
   

Crash test update

2014-09-04 Thread crashtest.libreoff...@gmail.com
New crashtest update available at 
dev-builds.libreoffice.org/crashtest/8cf89c24906c6d50a3c15f1ebef4df071ad6ec79


exportCrashes.csv
Description: Binary data


importCrash.csv
Description: Binary data


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


[Bug 39468] translate German comments, removing redundant ones

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39468

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

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

fdo#39468: Translate German comments



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

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


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

2014-09-04 Thread Miklos Vajna
 sw/source/filter/html/htmltab.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit cf1e0199c40213d2d5da7c18051457809175357b
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Thu Sep 4 16:33:49 2014 +0200

HTMLTable: improve comment translation

Change-Id: I540e019e1080e8c158226072a75306a2307e2f4d

diff --git a/sw/source/filter/html/htmltab.cxx 
b/sw/source/filter/html/htmltab.cxx
index 12e5293..928fb3d 100644
--- a/sw/source/filter/html/htmltab.cxx
+++ b/sw/source/filter/html/htmltab.cxx
@@ -383,8 +383,8 @@ class HTMLTable
 sal_uInt16 nCurRow; // current Row
 sal_uInt16 nCurCol; // current Column
 
-sal_uInt16 nLeftMargin; // Space to the left margin (from 
passage)
-sal_uInt16 nRightMargin;// Space to the right margin (from 
passage)
+sal_uInt16 nLeftMargin; // Space to the left margin (from 
paragraph edge)
+sal_uInt16 nRightMargin;// Space to the right margin (from 
paragraph edge)
 
 sal_uInt16 nCellPadding;// Space from border to Text
 sal_uInt16 nCellSpacing;// Space between two cells
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


LibreOffice / Future / design notes foo ...

2014-09-04 Thread Michael Meeks
So,

Somewhat random, but perhaps there is value in dumping whatever madness
I captured during this discussion on the list:

FYI,

Michael.

* Talk/Workshop: Thoughts on future core design ...

A BOF session, where developers can get together to chew over
the next big opportunities for improvement in the code-base, and catch
up with status on existing re-factorings. Several areas of work will
be highlighted, from re-using LibreOffice code, to threading and
rendering infrastructure, VCL widget lifecycle and more.




* Translation framework
+ move to boost' gettext compatible foo
+ multi-thread-safe, suitably licensed
+ Switching from STR_FOO_BAA - _(baa)
+ goal: move to 'Deckard'
+ shows http://deckard.malizor.org/
+ an incremental approach:
+ smallest SRC - .po
+ initialy bootstrapping  then ...
  parallelism.
+ string lists bit of a pain.
+ migrating translations
+ remove all ImageLists
+ lists needed for packimages
+ can we tokenize gettext strings (Kendy)
+ cf. binary size.
+ concern wrt. 60Mb iOS images etc.
+ size of translated resources will double (Andras)
+ every .mo file will have en  fr eg.
+ problems with Windows installer too

* do it - when we have an in-binary size fix.
+ concern wrt. .mo etc. file size

+ should look at Blender too (Caolan)


* VCL lifecycle
+ switching to reference counted / smart-pointer
  for all VCL Window sub-classes
+ first - find all stack / member created Windows.
+ Noel has a clang plugin to build list
DialogBox aBox( Hello World ); // must die
+ its a big - change (Caolan)
+ Lots of 'IsDead' canary checking


* dbgutil vs. normal builds (Miklos)
+ ABI compatibility issues between dbgutil and not
+ changing  #if OSL_DEBUG_LEVEL  1 - #ifdef DBG_UTIL
+ sw/ was fixed by Bjoern already

+ would love to have 1x not 2x orthogonal bits (Bjoern)
+ not having intersection of different ifdefs
  would be good.
+ single one wouldn't work (Michael Stahl)
+ debug STL bits.
+ problem is enabling debug STL to dbg-util ?
+ nice to build just a few bits with debug (Miklos)
+ fundamentally opposed to incompatiblity and useful.
+ extra OSL_DEBUG_LEVEL's  1 - tend to dump random files
+ finds confusing SAL_DEBUG / SAL_INFO / SAL_WARN (JanM)

* Threading
+ finding, cataloging  isolating threads that
  do VCL / GUI stuff.
+ not -that- many problem sites (?)
+ the ideal sol'n (Noel)
+ the UNO bits are a problem
+ heaviest problem - UNO remoting - all threaded (Sberg)
+ Junit etc.
+ concurrency here.
+ ideal to have 1x dedicated GUI thread
+ JUnit - needs re-working ? (Michael)
+ main work in core impl.
+ writer objects with UNO interfaces
+ could not depend on locking SolarMutex ...

+ use UNO appartment stuff to move ~all core
  app UNO calls to that main thread


* DECL_LINK cleanup ?
+ could we use a wrapper around boost::signal (Bjoern)
+ kill them all with an easy hack ?
+ do we require linkage to a library ? (Caolan)
+ good to have a mass-conversion ? vs. wait for C++ 11 (Miklos)
 + C++11 Lambdas rock (Ptyl)
+ mechanism - prolly orthogonal to lamdas (Stephan)
+ 2x different issues.

* Switching to GL rendering (Markus)
+ a new VCL backend based on OpenGL
+ useful for wayland (killing the Linux/X rendering)
+ also critical for mobile
+ can implement a more powerful  fast rendering API
+ free gradients etc.
+ also - finishing GL canvas / drawinglayer
+ rendering scene graph directly.
+ moving co-ordinates to float

+ can we switch to OpenGL everywhere  deprecate (Michael)
  

[Libreoffice-commits] voting.git: vote/2014-mc

2014-09-04 Thread Thorsten Behrens
 vote/2014-mc/candidates.wml |   10 +++---
 1 file changed, 3 insertions(+), 7 deletions(-)

New commits:
commit 8a1cfe9a7a6c9b06a54bedb58f0e94db6d47f1db
Author: Thorsten Behrens t...@documentfoundation.org
Date:   Thu Sep 4 18:02:00 2014 +0200

Fix glitches on candidates page.

diff --git a/vote/2014-mc/candidates.wml b/vote/2014-mc/candidates.wml
index 354fc25..d3e45d8 100644
--- a/vote/2014-mc/candidates.wml
+++ b/vote/2014-mc/candidates.wml
@@ -12,11 +12,9 @@
 
 p
   Below you will find a list of candidates who are running for the
-  The Document Foundation Membership Committee. A short summary statement 
from
-  each candidate and a link to their full candidacy announcement is
-  provided to help you learn more about them. We encourage all voters
-  to read the full candidacy statements and related discussions on
-  a 
href=http://listarchives.documentfoundation.org/www/board-discuss/;board-discuss#64;documentfoundation#46;org/a.
+  The Document Foundation Membership Committee. A short summary
+  statement from each candidate is provided to help you learn more
+  about them.
 /p
 
 p When deciding who you should vote for, please carefully
@@ -42,8 +40,6 @@
 
 h2Candidates for The Document Foundation Membership Committee/h2
 
-gera...@libreoffice.org
-
 ol
 listrongZeki Bildirici/strongbr /
Affiliation: emnone/embr /
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: include/svx

2014-09-04 Thread Florian Reisinger
 include/svx/svdhdl.hxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit fa6c5d6d6ddabe2931fc32da36dfe65340d83115
Author: Florian Reisinger reisi...@gmail.com
Date:   Thu Sep 4 19:42:24 2014 +0100

Translate German Comments.

Change-Id: I516f9cf73e372efb96335ae6d9cd80f0c5f6bde3

diff --git a/include/svx/svdhdl.hxx b/include/svx/svdhdl.hxx
index d4e2f2f..5f9435b 100644
--- a/include/svx/svdhdl.hxx
+++ b/include/svx/svdhdl.hxx
@@ -45,8 +45,8 @@ class MouseEvent;
 
 
 
-// Jedes Objekt muss in der Lage seine Handles zu erzeugen. Diese werden dann
-// bei einer Selektion abgeholt, bei der View angemeldet und sichtbar gemacht.
+// Every object must be able to create its handles. They will be fetched on
+// selection, registered at the View and made visible.
 // Wird ein Handle von der Maus beruehrt (IsHit()), so wird von der View der
 // entsprechende Mauszeiger vom Handle abgeholt und der App auf Anfrage zum
 // reinschalten uebergeben.
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Thanks for fixing the wizards

2014-09-04 Thread Tom Meinen
The letter, fax, and agenda wizards were not working in LibreOffice Writer 
under Kubuntu Linux.  I'm happy to say after the latest update, they all work 
now.  I just wanted to send out a thank you to whichever developer fixed them.  
I use both the letter and the fax one.  I kept having to run Windows under 
VirtualBox to use them, which was quite the pain.  Now I can run them in 
Kubuntu.  


Don't let anyone tell you these features are superfluous.  I use the letter and 
fax wizards all the time.  I've never used the agenda one, but I might at some 
point.  Thanks for fixing them.  
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: sd/uiconfig sw/uiconfig

2014-09-04 Thread Thomas Arnhold
 sd/uiconfig/sdraw/toolbar/drawingobjectbar.xml|1 +
 sd/uiconfig/simpress/toolbar/drawingobjectbar.xml |1 +
 sw/uiconfig/sglobal/toolbar/textobjectbar.xml |1 +
 sw/uiconfig/sweb/toolbar/textobjectbar.xml|1 +
 sw/uiconfig/swform/toolbar/textobjectbar.xml  |1 +
 sw/uiconfig/swreport/toolbar/textobjectbar.xml|1 +
 sw/uiconfig/swriter/toolbar/textobjectbar.xml |1 +
 sw/uiconfig/swxform/toolbar/textobjectbar.xml |1 +
 8 files changed, 8 insertions(+)

New commits:
commit 040a59e513b6435fb39bfecad9a54b3283216d0e
Author: Thomas Arnhold tho...@arnhold.org
Date:   Fri Sep 5 00:27:06 2014 +0200

Related: fdo#73151 bring DesignerDialog separator back too

Change-Id: I79c602221769be56f2be1ca83e14f21782e44b38

diff --git a/sd/uiconfig/sdraw/toolbar/drawingobjectbar.xml 
b/sd/uiconfig/sdraw/toolbar/drawingobjectbar.xml
index d7facae..f9e095c 100644
--- a/sd/uiconfig/sdraw/toolbar/drawingobjectbar.xml
+++ b/sd/uiconfig/sdraw/toolbar/drawingobjectbar.xml
@@ -19,6 +19,7 @@
 --
 toolbar:toolbar xmlns:toolbar=http://openoffice.org/2001/toolbar; 
xmlns:xlink=http://www.w3.org/1999/xlink;
  toolbar:toolbaritem xlink:href=.uno:DesignerDialog toolbar:visible=false 
toolbar:helpid=5539/
+ toolbar:toolbarseparator/
  toolbar:toolbaritem xlink:href=.uno:FormatLine toolbar:helpid=10143/
  toolbar:toolbaritem xlink:href=.uno:LineEndStyle toolbar:helpid=10301/
  toolbar:toolbarseparator/
diff --git a/sd/uiconfig/simpress/toolbar/drawingobjectbar.xml 
b/sd/uiconfig/simpress/toolbar/drawingobjectbar.xml
index f32d084..7ef1a47 100644
--- a/sd/uiconfig/simpress/toolbar/drawingobjectbar.xml
+++ b/sd/uiconfig/simpress/toolbar/drawingobjectbar.xml
@@ -19,6 +19,7 @@
 --
 toolbar:toolbar xmlns:toolbar=http://openoffice.org/2001/toolbar; 
xmlns:xlink=http://www.w3.org/1999/xlink;
  toolbar:toolbaritem xlink:href=.uno:DesignerDialog toolbar:visible=false 
toolbar:helpid=5539/
+ toolbar:toolbarseparator/
  toolbar:toolbaritem xlink:href=.uno:FormatLine toolbar:helpid=10143/
  toolbar:toolbaritem xlink:href=.uno:LineEndStyle toolbar:helpid=10301/
  toolbar:toolbarseparator/
diff --git a/sw/uiconfig/sglobal/toolbar/textobjectbar.xml 
b/sw/uiconfig/sglobal/toolbar/textobjectbar.xml
index aac9cdd..0ec27e1 100644
--- a/sw/uiconfig/sglobal/toolbar/textobjectbar.xml
+++ b/sw/uiconfig/sglobal/toolbar/textobjectbar.xml
@@ -19,6 +19,7 @@
 --
 toolbar:toolbar xmlns:toolbar=http://openoffice.org/2001/toolbar; 
xmlns:xlink=http://www.w3.org/1999/xlink; toolbar:id=toolbar
  toolbar:toolbaritem xlink:href=.uno:DesignerDialog toolbar:visible=false 
toolbar:helpid=5539/
+ toolbar:toolbarseparator/
  toolbar:toolbaritem xlink:href=.uno:StyleApply/
  toolbar:toolbarseparator/
  toolbar:toolbaritem xlink:href=.uno:CharFontName/
diff --git a/sw/uiconfig/sweb/toolbar/textobjectbar.xml 
b/sw/uiconfig/sweb/toolbar/textobjectbar.xml
index 9b8c5c6..19c6bae 100644
--- a/sw/uiconfig/sweb/toolbar/textobjectbar.xml
+++ b/sw/uiconfig/sweb/toolbar/textobjectbar.xml
@@ -19,6 +19,7 @@
 --
 toolbar:toolbar xmlns:toolbar=http://openoffice.org/2001/toolbar; 
xmlns:xlink=http://www.w3.org/1999/xlink;
  toolbar:toolbaritem xlink:href=.uno:DesignerDialog toolbar:visible=false 
toolbar:helpid=5539/
+ toolbar:toolbarseparator/
  toolbar:toolbaritem xlink:href=.uno:StyleApply toolbar:helpid=5552/
  toolbar:toolbarseparator/
  toolbar:toolbaritem xlink:href=.uno:CharFontName toolbar:helpid=10007/
diff --git a/sw/uiconfig/swform/toolbar/textobjectbar.xml 
b/sw/uiconfig/swform/toolbar/textobjectbar.xml
index aac9cdd..0ec27e1 100644
--- a/sw/uiconfig/swform/toolbar/textobjectbar.xml
+++ b/sw/uiconfig/swform/toolbar/textobjectbar.xml
@@ -19,6 +19,7 @@
 --
 toolbar:toolbar xmlns:toolbar=http://openoffice.org/2001/toolbar; 
xmlns:xlink=http://www.w3.org/1999/xlink; toolbar:id=toolbar
  toolbar:toolbaritem xlink:href=.uno:DesignerDialog toolbar:visible=false 
toolbar:helpid=5539/
+ toolbar:toolbarseparator/
  toolbar:toolbaritem xlink:href=.uno:StyleApply/
  toolbar:toolbarseparator/
  toolbar:toolbaritem xlink:href=.uno:CharFontName/
diff --git a/sw/uiconfig/swreport/toolbar/textobjectbar.xml 
b/sw/uiconfig/swreport/toolbar/textobjectbar.xml
index aac9cdd..0ec27e1 100644
--- a/sw/uiconfig/swreport/toolbar/textobjectbar.xml
+++ b/sw/uiconfig/swreport/toolbar/textobjectbar.xml
@@ -19,6 +19,7 @@
 --
 toolbar:toolbar xmlns:toolbar=http://openoffice.org/2001/toolbar; 
xmlns:xlink=http://www.w3.org/1999/xlink; toolbar:id=toolbar
  toolbar:toolbaritem xlink:href=.uno:DesignerDialog toolbar:visible=false 
toolbar:helpid=5539/
+ toolbar:toolbarseparator/
  toolbar:toolbaritem xlink:href=.uno:StyleApply/
  toolbar:toolbarseparator/
  toolbar:toolbaritem xlink:href=.uno:CharFontName/
diff --git a/sw/uiconfig/swriter/toolbar/textobjectbar.xml 
b/sw/uiconfig/swriter/toolbar/textobjectbar.xml
index aac9cdd..0ec27e1 100644
--- a/sw/uiconfig/swriter/toolbar/textobjectbar.xml
+++ b/sw/uiconfig/swriter/toolbar/textobjectbar.xml
@@ -19,6 

Outlines

2014-09-04 Thread Keith Fretz
Could we use the tuxcards code to add outline capacity to libreoffice?
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: scripting/java

2014-09-04 Thread rbuj
 scripting/java/com/sun/star/script/framework/container/ParcelContainer.java
   |   18 ++
 scripting/java/com/sun/star/script/framework/container/ScriptMetaData.java 
   |   15 ++--
 scripting/java/com/sun/star/script/framework/container/UnoPkgContainer.java
   |   13 ++-
 scripting/java/com/sun/star/script/framework/container/XMLParserFactory.java   
   |6 +--
 scripting/java/com/sun/star/script/framework/io/UCBStreamHandler.java  
   |6 +--
 scripting/java/com/sun/star/script/framework/io/XInputStreamImpl.java  
   |2 -
 scripting/java/com/sun/star/script/framework/provider/ScriptContext.java   
   |7 +--
 
scripting/java/com/sun/star/script/framework/provider/beanshell/ScriptEditorForBeanShell.java
 |3 -
 
scripting/java/com/sun/star/script/framework/provider/beanshell/ScriptProviderForBeanShell.java
   |8 +---
 
scripting/java/com/sun/star/script/framework/provider/beanshell/ScriptSourceModel.java
|5 +-
 
scripting/java/com/sun/star/script/framework/provider/java/ScriptProviderForJava.java
 |6 +--
 scripting/java/com/sun/star/script/framework/provider/java/StrictResolver.java 
   |3 -
 
scripting/java/com/sun/star/script/framework/provider/javascript/ScriptEditorForJavaScript.java
   |3 -
 
scripting/java/com/sun/star/script/framework/provider/javascript/ScriptProviderForJavaScript.java
 |5 +-
 14 files changed, 32 insertions(+), 68 deletions(-)

New commits:
commit 652b807658a54cd2ccd04ebc6900d2cf1ce85015
Author: rbuj robert@gmail.com
Date:   Thu Sep 4 23:05:24 2014 +0200

scripting: the assigned value is never used

Change-Id: I430da93e985291300ac5fdaccc7f907535771a07
Reviewed-on: https://gerrit.libreoffice.org/11287
Reviewed-by: Thomas Arnhold tho...@arnhold.org
Tested-by: Thomas Arnhold tho...@arnhold.org

diff --git 
a/scripting/java/com/sun/star/script/framework/container/ParcelContainer.java 
b/scripting/java/com/sun/star/script/framework/container/ParcelContainer.java
index c957657..866059f 100644
--- 
a/scripting/java/com/sun/star/script/framework/container/ParcelContainer.java
+++ 
b/scripting/java/com/sun/star/script/framework/container/ParcelContainer.java
@@ -459,8 +459,6 @@ public class ParcelContainer implements XNameAccess
 public Parcel loadParcel( String parcelUrl ) throws 
com.sun.star.lang.WrappedTargetException, 
com.sun.star.lang.IllegalArgumentException
 {
 
-String name = null;
-
 String parcelDescUrl =  PathUtils.make_url( parcelUrl,  
ParcelDescriptor.PARCEL_DESCRIPTOR_NAME );
 Parcel parcel = null;
 
@@ -494,7 +492,7 @@ public class ParcelContainer implements XNameAccess
 LogUtils.DEBUG(Processing  + parcelDescUrl +  closed  );
 
 int indexOfSlash = parcelUrl.lastIndexOf(/);
-name = parcelUrl.substring( indexOfSlash + 1 );
+String name = parcelUrl.substring( indexOfSlash + 1 );
 
 parcel = new Parcel( m_xSFA, this, pd, name );
 
@@ -588,20 +586,17 @@ public class ParcelContainer implements XNameAccess
 // removes but doesn't physically delele parcel from container
 public boolean removeParcel(String name) throws 
com.sun.star.container.NoSuchElementException, 
com.sun.star.lang.WrappedTargetException
 {
-boolean result = false;
 Parcel p = (Parcel)getByName( name );
 if ( p == null )
 {
 throw new com.sun.star.container.NoSuchElementException(No parcel 
named  + name );
 }
 
-result =  parcels.remove( p );
-return result;
+return  parcels.remove( p );
 }
 public boolean deleteParcel(String name) throws 
com.sun.star.container.NoSuchElementException, 
com.sun.star.lang.WrappedTargetException
 {
 LogUtils.DEBUG( deleteParcel for containerURL  + containerUrl +  
name =  + name  +  Langueg =  + language );
-boolean result = false;
 
 Parcel p = (Parcel)getByName( name );
 if ( p == null )
@@ -620,18 +615,15 @@ public class ParcelContainer implements XNameAccess
 throw new com.sun.star.lang.WrappedTargetException( e.toString() );
 }
 
-result =  parcels.remove( p );
-return result;
+return  parcels.remove( p );
 }
 
 public String getLanguage() { return language; }
 
 public ScriptMetaData findScript( ParsedScriptUri  parsedUri ) throws  
com.sun.star.container.NoSuchElementException,  
com.sun.star.lang.WrappedTargetException
 {
-ScriptMetaData scriptData = null;
-Parcel p = null;
-p = (Parcel)getByName( parsedUri.parcel);
-scriptData = (ScriptMetaData)p.getByName( parsedUri.function);
+Parcel p = (Parcel)getByName( parsedUri.parcel);
+ScriptMetaData scriptData = 

[Libreoffice-commits] core.git: scripting/java

2014-09-04 Thread rbuj
 scripting/java/com/sun/star/script/framework/browse/PkgProviderBrowseNode.java 
|7 --
 scripting/java/com/sun/star/script/framework/container/Parcel.java 
|6 -
 scripting/java/com/sun/star/script/framework/container/ParcelContainer.java
|6 -
 scripting/java/com/sun/star/script/framework/container/ScriptEntry.java
|   12 +--
 scripting/java/com/sun/star/script/framework/container/ScriptMetaData.java 
|   32 +-
 scripting/java/com/sun/star/script/framework/container/UnoPkgContainer.java
|   10 ---
 scripting/java/com/sun/star/script/framework/provider/ScriptProvider.java  
|   10 ---
 7 files changed, 17 insertions(+), 66 deletions(-)

New commits:
commit a795c3660b543239431f3c6f7df383140da18fe5
Author: rbuj robert@gmail.com
Date:   Fri Sep 5 00:07:55 2014 +0200

scripting: the if statement is redundant

Change-Id: I7e61d740d6f58afbcdad630deb0de0ef548efcfb
Reviewed-on: https://gerrit.libreoffice.org/11288
Reviewed-by: Thomas Arnhold tho...@arnhold.org
Tested-by: Thomas Arnhold tho...@arnhold.org

diff --git 
a/scripting/java/com/sun/star/script/framework/browse/PkgProviderBrowseNode.java
 
b/scripting/java/com/sun/star/script/framework/browse/PkgProviderBrowseNode.java
index 900a4b3..ca5d94d 100644
--- 
a/scripting/java/com/sun/star/script/framework/browse/PkgProviderBrowseNode.java
+++ 
b/scripting/java/com/sun/star/script/framework/browse/PkgProviderBrowseNode.java
@@ -37,12 +37,7 @@ public class PkgProviderBrowseNode extends ProviderBrowseNode
 
 @Override
 public String getName() {
-String name = Unknown;
-if ( container != null )
-{
-name =  container.getName();
-}
-return name;
+return (container != null) ? container.getName() : Unknown;
 }
 
 }
diff --git a/scripting/java/com/sun/star/script/framework/container/Parcel.java 
b/scripting/java/com/sun/star/script/framework/container/Parcel.java
index 0a5b75a..6b4fd8d 100644
--- a/scripting/java/com/sun/star/script/framework/container/Parcel.java
+++ b/scripting/java/com/sun/star/script/framework/container/Parcel.java
@@ -140,11 +140,7 @@ public class Parcel implements XNameContainer
 
 public boolean hasElements()
 {
-if ( m_descriptor != null  m_descriptor.getScriptEntries().length  
0 )
-{
-return true;
-}
-return false;
+return m_descriptor != null  m_descriptor.getScriptEntries().length 
 0;
 }
 
 public void replaceByName( String aName, java.lang.Object aElement ) 
throws com.sun.star.lang.IllegalArgumentException, 
com.sun.star.container.NoSuchElementException, 
com.sun.star.lang.WrappedTargetException
diff --git 
a/scripting/java/com/sun/star/script/framework/container/ParcelContainer.java 
b/scripting/java/com/sun/star/script/framework/container/ParcelContainer.java
index 866059f..92e7a5b 100644
--- 
a/scripting/java/com/sun/star/script/framework/container/ParcelContainer.java
+++ 
b/scripting/java/com/sun/star/script/framework/container/ParcelContainer.java
@@ -362,11 +362,7 @@ public class ParcelContainer implements XNameAccess
 }
 public boolean hasElements()
 {
-if ( parcels == null || parcels.isEmpty() )
-{
-return false;
-}
-return true;
+return !(parcels == null || parcels.isEmpty());
 }
 
 private void loadParcels() throws 
com.sun.star.lang.IllegalArgumentException, 
com.sun.star.lang.WrappedTargetException
diff --git 
a/scripting/java/com/sun/star/script/framework/container/ScriptEntry.java 
b/scripting/java/com/sun/star/script/framework/container/ScriptEntry.java
index ddd3fa7..b4d6a70 100644
--- a/scripting/java/com/sun/star/script/framework/container/ScriptEntry.java
+++ b/scripting/java/com/sun/star/script/framework/container/ScriptEntry.java
@@ -76,13 +76,11 @@ public class ScriptEntry implements Cloneable {
 }
 
 public boolean equals(ScriptEntry other) {
-if (language.equals(other.getLanguage()) 
-languagename.equals(other.getLanguageName()) 
-logicalname.equals(other.getLogicalName()) 
-languagedepprops.equals(other.getLanguageProperties()) 
-location.equals(other.getLocation()))
-return true;
-return false;
+return language.equals(other.getLanguage()) 
+languagename.equals(other.getLanguageName()) 
+logicalname.equals(other.getLogicalName()) 
+languagedepprops.equals(other.getLanguageProperties()) 
+location.equals(other.getLocation());
 }
 
 public MapString,String getLanguageProperties()
diff --git 
a/scripting/java/com/sun/star/script/framework/container/ScriptMetaData.java 
b/scripting/java/com/sun/star/script/framework/container/ScriptMetaData.java
index 89abbfd..1d92abc 100644
--- a/scripting/java/com/sun/star/script/framework/container/ScriptMetaData.java
+++ 

[Libreoffice-commits] core.git: scripting/java

2014-09-04 Thread rbuj
 scripting/java/com/sun/star/script/framework/container/ScriptMetaData.java  |  
 16 +-
 scripting/java/com/sun/star/script/framework/container/UnoPkgContainer.java |  
 10 +++---
 2 files changed, 13 insertions(+), 13 deletions(-)

New commits:
commit 015d65c7ea301ed1033dde71e722e32f94c49530
Author: rbuj robert@gmail.com
Date:   Fri Sep 5 00:46:03 2014 +0200

scripting: use contains to check if a string contains a substring

Change-Id: I7cbd32310e362f43f0a456e45b58930eb5453f0c
Reviewed-on: https://gerrit.libreoffice.org/11289
Reviewed-by: Thomas Arnhold tho...@arnhold.org
Tested-by: Thomas Arnhold tho...@arnhold.org

diff --git 
a/scripting/java/com/sun/star/script/framework/container/ScriptMetaData.java 
b/scripting/java/com/sun/star/script/framework/container/ScriptMetaData.java
index 1d92abc..c644e53 100644
--- a/scripting/java/com/sun/star/script/framework/container/ScriptMetaData.java
+++ b/scripting/java/com/sun/star/script/framework/container/ScriptMetaData.java
@@ -121,13 +121,13 @@ public class ScriptMetaData extends ScriptEntry {
 {
 String result = Unknown;
 
-if ( url.indexOf(UNO_USER_PACKAGES1)  -1 ||
- url.indexOf(UNO_USER_PACKAGES2)  -1 )
+if ( url.contains(UNO_USER_PACKAGES1) ||
+ url.contains(UNO_USER_PACKAGES2) )
 {
 result = PathUtils.make_url( user:uno_packages, pkgname );
 }
-else if ( url.indexOf(UNO_SHARED_PACKAGES1)  -1 ||
-  url.indexOf(UNO_SHARED_PACKAGES2)  -1 )
+else if ( url.contains(UNO_SHARED_PACKAGES1) ||
+  url.contains(UNO_SHARED_PACKAGES2) )
 {
 result = PathUtils.make_url( share:uno_packages, pkgname );
 }
@@ -151,8 +151,8 @@ public class ScriptMetaData extends ScriptEntry {
 String placeHolder = Unknown;
 String pathToParcel = parent.getPathToParcel();
 
-if ( pathToParcel.indexOf(UNO_USER_PACKAGES1)  -1 ||
- pathToParcel.indexOf(UNO_USER_PACKAGES2)  -1 )
+if ( pathToParcel.contains(UNO_USER_PACKAGES1) ||
+ pathToParcel.contains(UNO_USER_PACKAGES2) )
 {
 // it's a package
 placeHolder = user:uno_packages;
@@ -162,8 +162,8 @@ public class ScriptMetaData extends ScriptEntry {
 placeHolder = PathUtils.make_url( placeHolder, unoPkg );
 }
 }
-else if ( pathToParcel.indexOf(UNO_SHARED_PACKAGES1)  -1 ||
-  pathToParcel.indexOf(UNO_SHARED_PACKAGES2)  -1 )
+else if ( pathToParcel.contains(UNO_SHARED_PACKAGES1) ||
+  pathToParcel.contains(UNO_SHARED_PACKAGES2) )
 {
 //its a package
 placeHolder = share:uno_packages;
diff --git 
a/scripting/java/com/sun/star/script/framework/container/UnoPkgContainer.java 
b/scripting/java/com/sun/star/script/framework/container/UnoPkgContainer.java
index 2680772..d281b92 100644
--- 
a/scripting/java/com/sun/star/script/framework/container/UnoPkgContainer.java
+++ 
b/scripting/java/com/sun/star/script/framework/container/UnoPkgContainer.java
@@ -355,11 +355,11 @@ public class UnoPkgContainer extends ParcelContainer
 LogUtils.DEBUG(processUnoPackage - script library package);
 String parentUrl = uri;
 
-if ( uri.indexOf( %2Funo_packages%2F )  -1 ||
- uri.indexOf( /uno_packages/ )  -1 ||
- uri.indexOf($UNO_USER_PACKAGES_CACHE/)  -1 ||
- uri.indexOf($UNO_SHARED_PACKAGES_CACHE/)  -1 ||
- uri.indexOf($BUNDLED_EXTENSIONS/)  -1 )
+if ( uri.contains(%2Funo_packages%2F) ||
+ uri.contains(/uno_packages/) ||
+ uri.contains($UNO_USER_PACKAGES_CACHE/) ||
+ uri.contains($UNO_SHARED_PACKAGES_CACHE/) ||
+ uri.contains($BUNDLED_EXTENSIONS/) )
 {
 //its in a bundle need to determine the uno-package file its in
 LogUtils.DEBUG(processUnoPackage - is part of a uno bundle);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: 3 commits - cui/source dbaccess/source include/svtools sc/source sd/source svx/source sw/source wizards/com wizards/source

2014-09-04 Thread Thomas Arnhold
 cui/source/customize/acccfg.src|2 
 cui/source/dialogs/cuires.src  |4 -
 dbaccess/source/ui/inc/dbu_dlg.hrc |   11 ---
 include/svtools/controldims.hrc|   22 
--
 sc/source/ui/sidebar/CellAppearancePropertyPanel.src   |3 
 sd/source/ui/app/tbxids_tmpl.src   |1 
 sd/source/ui/app/toolbox2_tmpl.src |   35 
--
 sd/source/ui/dlg/LayerDialog.src   |2 
 sd/source/ui/dlg/animobjs.src  |3 
 sd/source/ui/dlg/navigatr.src  |1 
 svx/source/dialog/docrecovery.hrc  |   15 
 svx/source/sidebar/area/AreaPropertyPanel.hrc  |8 --
 svx/source/sidebar/area/AreaPropertyPanel.src  |3 
 svx/source/sidebar/line/LinePropertyPanel.hrc  |4 -
 svx/source/sidebar/line/LinePropertyPanel.src  |4 -
 svx/source/sidebar/paragraph/ParaPropertyPanel.hrc |4 -
 sw/source/ui/dbui/mmaddressblockpage.src   |3 
 sw/source/ui/fldui/fldui.src   |   12 +--
 wizards/com/sun/star/wizards/letter/LetterWizardDialogResources.py |1 
 wizards/source/formwizard/dbwizres.src |1 
 20 files changed, 38 insertions(+), 101 deletions(-)

New commits:
commit ec8754183825c3889eae7614433fba5727310e19
Author: Thomas Arnhold tho...@arnhold.org
Date:   Tue Aug 26 21:23:46 2014 +0200

resource files: remove unused definitions

Change-Id: Ic782eab6943aa8e659acfceb9f20dac76224c258

diff --git a/dbaccess/source/ui/inc/dbu_dlg.hrc 
b/dbaccess/source/ui/inc/dbu_dlg.hrc
index 307c09d..1089be5 100644
--- a/dbaccess/source/ui/inc/dbu_dlg.hrc
+++ b/dbaccess/source/ui/inc/dbu_dlg.hrc
@@ -25,19 +25,8 @@
 #define PAGE_Y  215
 #define WIZARD_PAGE_X   225
 #define WIZARD_PAGE_Y   240
-#define START_X 6
-
-#define LISTBOX_HEIGHT  12
-#define FIXEDTEXT_HEIGHT 8
-#define RELATED_CONTROLS 4
-#define UNRELATED_CONTROLS   7
-#define EDIT_HEIGHT 12
-#define BUTTON_HEIGHT   14
-#define BUTTON_WIDTH50
 
 //constants for the wizards
-#define INIT_Y   28
-#define INDENTED_X   6
 #define INDENT_BELOW_RADIO   10
 
 #define STR_PARENTTITLE_GENERAL RID_STR_DLG_START + 0
diff --git a/include/svtools/controldims.hrc b/include/svtools/controldims.hrc
index 6f62434..81972f5 100644
--- a/include/svtools/controldims.hrc
+++ b/include/svtools/controldims.hrc
@@ -27,7 +27,6 @@
 
 // Base
 #define RSC_BS_CHARHEIGHT   8
-#define RSC_BS_CHARWIDTH4
 
 // control dimensions
 #define RSC_CD_PUSHBUTTON_WIDTH 50
@@ -38,42 +37,21 @@
 
 #define RSC_CD_TEXTBOX_HEIGHT   12  // also numeric fields etc.
 
-#define RSC_CD_CHECKBOX_HEIGHT  10  // also tristate
 #define RSC_CD_RADIOBUTTON_HEIGHT   10
 
 // spacings
 #define RSC_SP_CTRL_X   6   // controls that are 
unrelated
 #define RSC_SP_CTRL_Y   7
-#define RSC_SP_CTRL_GROUP_X 3   // related controls, or 
controls in a groupbox
 #define RSC_SP_CTRL_GROUP_Y 4
 #define RSC_SP_CTRL_DESC_X  3   // between description 
text and related control
 #define RSC_SP_CTRL_DESC_Y  3
 
-// overruled spacings between certain controls
-#define RSC_SP_FLGR_SPACE_X 6   // between groupings made 
with FixedLine
-#define RSC_SP_FLGR_SPACE_Y 4
-#define RSC_SP_GRP_SPACE_X  6   // between groupings made 
with GroupBox
-
 // dialog inner border
 #define RSC_SP_DLG_INNERBORDER_LEFT 6
 #define RSC_SP_DLG_INNERBORDER_TOP  6
 #define RSC_SP_DLG_INNERBORDER_RIGHT6
 #define RSC_SP_DLG_INNERBORDER_BOTTOM   6
 
-// tab page inner border
-#define RSC_SP_TBPG_INNERBORDER_TOP 3
-#define RSC_SP_TBPG_INNERBORDER_RIGHT   6
-#define RSC_SP_TBPG_INNERBORDER_BOTTOM  6
-
-// FixedLine group inner border
-#define RSC_SP_FLGR_INNERBORDER_TOP 3
-#define RSC_SP_FLGR_INNERBORDER_BOTTOM  0
-
-// GroupBox inner border
-#define RSC_SP_GRP_INNERBORDER_LEFT 6   // for GroupBox groupings
-#define RSC_SP_GRP_INNERBORDER_TOP  6
-#define RSC_SP_GRP_INNERBORDER_RIGHT6
-
 #endif // _SVT_CONTROLDIMS_HRC_
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/ui/sidebar/CellAppearancePropertyPanel.src 
b/sc/source/ui/sidebar/CellAppearancePropertyPanel.src
index 569171f..fd6a287 100644
--- a/sc/source/ui/sidebar/CellAppearancePropertyPanel.src
+++ 

[Bug 75025] LibreOffice 4.3 most annoying bugs

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75025

Bug 75025 depends on bug 51534, which changed state.

Bug 51534 Summary: Ruler background doesn't change according to application 
background setting
https://bugs.freedesktop.org/show_bug.cgi?id=51534

   What|Removed |Added

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

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


[Libreoffice-qa] Missing Tools - Options - Internet - MediaWiki options in LO 4.4.0.0

2014-09-04 Thread Thomas Hackert
Hello @ll,
and another one:
1. Start LO
2. Go to Tools – Options – Internet – MediaWiki

On my system with LO Version: 4.4.0.0.alpha0+ Build ID: 
8e4defe4b59a72fbe82f94b26e233ba36640c739 TinderBox: Linux-rpm_deb-
x86@45-TDF, Branch:master, Time: 2014-09-02_01:46:56 (parallel 
installed, following the instructions from 
https://wiki.documentfoundation.org/Installing_in_parallel and with 
en_US lang- as well as helppack) under Debian Testing i686, there is 
only a grey page on the right side, without any possibility to add 
a wiki account etc. ... :( Can someone confirm this with a different 
OS/architecture, please?
TIA and have a nice evening
Thomas.

-- 
NP: DavidTMX – Le Curé Qui Vouliat Baiser

___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/

Re: [Libreoffice-qa] Missing Tools - Options - Internet - MediaWiki options in LO 4.4.0.0

2014-09-04 Thread V Stuart Foote
@Thomas,

Sorry,  can't check. No MediaWiki option on the TB39 builds for Windows
Version: 4.4.0.0.alpha0+
Build ID: fd81523328891c69ee7cb28bf22308225da42744
TinderBox: Win-x86@39, Branch:master, Time: 2014-09-03_08:48:37



From: Libreoffice-qa libreoffice-qa-boun...@lists.freedesktop.org on behalf 
of Thomas Hackert 
Sent: Thursday, September 04, 2014 12:34 PM
To: libreoffice-qa@lists.freedesktop.org
Subject: [Libreoffice-qa] Missing Tools - Options - Internet - MediaWiki  
options in LO 4.4.0.0

Hello @ll,
and another one:
1. Start LO
2. Go to Tools – Options – Internet – MediaWiki

On my system with LO Version: 4.4.0.0.alpha0+ Build ID:
8e4defe4b59a72fbe82f94b26e233ba36640c739 TinderBox: Linux-rpm_deb-
x86@45-TDF, Branch:master, Time: 2014-09-02_01:46:56 (parallel
installed, following the instructions from
https://wiki.documentfoundation.org/Installing_in_parallel and with
en_US lang- as well as helppack) under Debian Testing i686, there is
only a grey page on the right side, without any possibility to add
a wiki account etc. ... :( Can someone confirm this with a different
OS/architecture, please?
TIA and have a nice evening
Thomas.

--
NP: DavidTMX – Le Curé Qui Vouliat Baiser

___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/


Re: [Libreoffice-qa] Missing Tools - Options - Internet - MediaWiki options in LO 4.4.0.0

2014-09-04 Thread Jay Philips
Hi Thomas,

Confirmed.

Regards,
Jay Philips

On 09/04/2014 09:34 PM, Thomas Hackert wrote:
 Hello @ll,
 and another one:
 1. Start LO
 2. Go to Tools – Options – Internet – MediaWiki
 
 On my system with LO Version: 4.4.0.0.alpha0+ Build ID: 
 8e4defe4b59a72fbe82f94b26e233ba36640c739 TinderBox: Linux-rpm_deb-
 x86@45-TDF, Branch:master, Time: 2014-09-02_01:46:56 (parallel 
 installed, following the instructions from 
 https://wiki.documentfoundation.org/Installing_in_parallel and with 
 en_US lang- as well as helppack) under Debian Testing i686, there is 
 only a grey page on the right side, without any possibility to add 
 a wiki account etc. ... :( Can someone confirm this with a different 
 OS/architecture, please?
 TIA and have a nice evening
 Thomas.
 
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/

[Libreoffice-bugs] [Bug 82009] PIVOTTABLE: Black color on fields of Pivot Table Layot window (Mac OS X only)

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82009

--- Comment #7 from djmc...@gmail.com ---
Also persists on 4.3.1.2 on OS 10.9.4.

(I can't confirm that this is a regression as I haven't needed to use pivot
tables in some time, but boy is the timing of this bug bad wrt my current
needs.)

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


[Libreoffice-bugs] [Bug 74967] Allow rule for no value (entered) in conditional formatting

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=74967

--- Comment #3 from Ulrich Windl ulrich.wi...@rz.uni-regensburg.de ---
Created attachment 105717
  -- https://bugs.freedesktop.org/attachment.cgi?id=105717action=edit
Test Case

Sorry, first I thought the issue is so simple that a test case isn't actually
needed, but then I lost that bug in the personal radar. Anyway here's a test
case where you see that cells with no value are treated the same as those with
value zero when the condition is equals zero.

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


[Libreoffice-bugs] [Bug 82847] Build fail with MariaDb Mysqlcppconn on MacOs

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82847

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

   What|Removed |Added

 Whiteboard||target:4.4.0

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

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

fdo#82847 mariadb patch out problematic 'inline' that result in link issue



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

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


[Libreoffice-bugs] [Bug 83299] Format Sections is disabled when the cursor is inside a protected section

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83299

--- Comment #9 from e...@doxos.eu ---
Can the bug be retitled then, so that it reflects what the actual problem is?
The fact that it is a section problem was just by first guess, but I did not
know for sure.

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


[Libreoffice-bugs] [Bug 83477] New: EDITING: Excel

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83477

  Priority: medium
Bug ID: 83477
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: EDITING: Excel
  Severity: normal
Classification: Unclassified
OS: Windows (All)
  Reporter: maritwri...@hotmail.no
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 4.4.0.0.alpha0+ Master
 Component: Spreadsheet
   Product: LibreOffice

Created attachment 105718
  -- https://bugs.freedesktop.org/attachment.cgi?id=105718action=edit
One of the files I am trying to do something with.

Cannot correct cells in sheets.
Funny text appears in cells.
Cannot show lines where to correct text.
Do not want background and all the other things that come up at top. 
Operating System: Windows (other)
Version: 4.4.0.0.alpha0+ Master

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


[Libreoffice-bugs] [Bug 83299] Format Sections is disabled when the cursor is inside a protected section

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83299

--- Comment #10 from Joel Madero jmadero@gmail.com ---
How can it be our bug at all if the actual document is missing the ODF tags
that enable sections? The file itself is missing tags that are required to
enable sections . . .

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


[Libreoffice-bugs] [Bug 83469] Other: installation for update to latest version

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83469

Urmas davian...@gmail.com changed:

   What|Removed |Added

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

--- Comment #2 from Urmas davian...@gmail.com ---
That is an MSI error.

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


[Libreoffice-bugs] [Bug 83477] EDITING: Excel

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83477

Urmas davian...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #1 from Urmas davian...@gmail.com ---
Could you describe your issue in, you know, human language?
Your spreadsheet looks pretty much the same in LO, Excel 2003 and 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 83477] EDITING: Excel

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83477

--- Comment #2 from Marit Wright maritwri...@hotmail.no ---
And what does human language mean? You sound rather impolite.

Hilsen

Marit Aavok Wright



From: bugzilla-dae...@freedesktop.org
To: maritwri...@hotmail.no
Subject: [Bug 83477] EDITING: Excel
Date: Thu, 4 Sep 2014 06:57:17 +





 Urmas
 changed
  bug 83477




What
Removed
Added



   Status
   UNCONFIRMED

   NEEDINFO




   Ever confirmed



   1





Comment # 1
  on bug 83477
  from  Urmas

Could you describe your issue in, you know, human language?
Your spreadsheet looks pretty much the same in LO, Excel 2003 and 2007.




  You are receiving this mail because:


  You reported the bug.

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


[Libreoffice-bugs] [Bug 81437] FILEOPEN: Imported Excel XLSX chart border property ignored

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=81437

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

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 82847] Build fail with MariaDb Mysqlcppconn on MacOs

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82847

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

   What|Removed |Added

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

--- Comment #4 from Lionel Elie Mamane lio...@mamane.lu ---
(In reply to comment #2)
 Since when did cmake become required to build the connector ?

Since 50 minutes, it is not anymore (thanks to Norbert Thiebaud for that).

Norbert also solved the link issues, so it should work now. Reopen if it does
not.

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


[Libreoffice-bugs] [Bug 81272] Libreoffice Is Very Slow Rendering Chinese Characters (because of font fallback?)

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=81272

--- Comment #6 from Matthew Francis fdb...@neosheffield.co.uk ---
Poked at this a little with callgrind. There appear to be a number of villains
in this case:

1) SwTxtFrm::CollectAutoCmplWrds
Called from beneath SwLayIdle::DoIdleJob()
Workaround: Disable Tools – Autocorrect Options... – Word Completion – Collect
words

2) SwTxtFrm::_AutoSpell
Called from beneath SwLayIdle::DoIdleJob()
Workaround: Disable Tools – Automatic Spell Checking

3) SwTxtNode::CountWords
Called from beneath SwLayIdle::DoIdleJob()
Workaround: None found

4) SwTxtNode::CountWords
Called from beneath DocumentStatisticsManager::IncrementalDocStatCalculate
Workaround: None found


Each of these spends a long time dissecting text using SwScanner. In addition,
(3) and (4) appear to be counting the same words twice, which compounds the
fact that it's a slow operation on a long paragraph.

With all four disabled (commenting code out where necessary), editing the giant
paragraph in the text document is merely slow rather than intolerable.

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


[Libreoffice-bugs] [Bug 83414] Other: Error calculating time

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83414

--- Comment #10 from penttila pentt...@freemail.hu ---
Sorry but something is not OK for me!

I would like to add the following two time(!) values and get the result in such
a format which also displays the number of days.

11:11:11
22:22:22
---
33:33:33   (should be like  01:09:33:33)

If I change the result cell format to custom  'DD:HH:MM:SS' the cell format
category is automatically changed from 'time' to 'date' and the result is
31:09:33:33! This is the root of the problem, the cell category should always
remain 'time' as I am working with time values and not with dates!

The 'time' cell category itself should contain this required 'day-time' format
(not date-time) which is missing at the moment. (May be it could be marked
different from DD:HH:MM:SS.)

Some other notes:
1) Comment #9 should not be relevant in this case as we are speaking about
times and not dates!
2) Is this automatic cell category conversion feature OK? It leads to such
dangerous situations!
3) I am not an expert of Calc but maybe there should be an error message/sign
when the result doesn't fit in the specified HH:MM:SS format!

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


[Libreoffice-bugs] [Bug 81659] Expand references when new columns/rows are inserted spoils SUM formula when row is inserted

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=81659

--- Comment #4 from GerardF gerard.farg...@orange.fr ---
(In reply to comment #3)
 There is obviously a change, but where is the bug or incorrect behavior? In
 the current version or in the previous?
 
 Best regards. JBF

When inserting new row with Expand references  enabled,
References in formulae must be expanded if:
+ new row is adjacent to references
+ original reference contains at least 2 rows.

Example 1:
Formula =SUM(A2:B3)and insert row before row 2 make formula becomes =SUM(A2:B4)
(there is 2 rows in the SUM range)
Example 2:
Formula =SUM(A2:B2)and insert row before row 2 make formula stay =SUM(A2:B2)
(there is 1 row in the SUM range)

Plus : this bug change also references when row inserted is *not* adjacent to
the range.
Inserting a new row in row 2 with formula =SUM(A5:B5) in C5 change the formula
in =SUM(A5:B6)

Same behaviour for columns.

This is indeed a major 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 43071] Labels for connectors are placed too far away from the lines they describe.

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43071

--- Comment #6 from Karl Behler karl.beh...@ipp.mpg.de ---
See also bug 45028 describing problems when importing Visio connectors into
Draw.

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


[Libreoffice-bugs] [Bug 45028] Visio import: label of connector gets written through line

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45028

Karl Behler karl.beh...@ipp.mpg.de changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 75301] Using text fields attached to connectors' control points instead of connector labels

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75301

Karl Behler karl.beh...@ipp.mpg.de changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 83354] REPORTBUILDER: Chart is truncated - moved down outside the margins of the object

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83354

christian.carro...@wanadoo.fr changed:

   What|Removed |Added

   Priority|medium  |high

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


[Libreoffice-bugs] [Bug 58691] PIVOTTABLE: export to Excel 2007/2010 breaks functionality

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58691

--- Comment #7 from Kohei Yoshida libreoff...@kohei.us ---
The master branch should do a better job on this.  Still not perfect (and
probably never will be due to incompatibilities between Excel and Calc's pivot
tables), but it's better than nothing.

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


[Libreoffice-bugs] [Bug 83455] UI: Sidebar Properties Character: underline dropdown is barely viewable (white underlines instead of black)

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83455

--- Comment #3 from Maxim Monastirsky momonas...@gmail.com ---
That's because the sifr theme was initially based on the HiContrast one. There
are still many HiContrast images inside the sifr folder. For this case the
images are at icon-themes/sifr/svx/res/symphony/line*.png

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


[Libreoffice-bugs] [Bug 83480] New: EDITING: Font selection buggy when multiple cells with different fonts selected

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83480

  Priority: medium
Bug ID: 83480
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: EDITING: Font selection buggy when multiple cells with
different fonts selected
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: davidfabi...@gmail.com
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 4.2.6.2 release
 Component: Spreadsheet
   Product: LibreOffice

Problem description: 
When trying to set a font for multiple cells that have previously had different
fonts the drop-down font selection menu can not be scrolled normally but
instead constantly repositions the view to the top of the menu.

Steps to reproduce:
1. Open a new spreadsheet
2. Enter some text in a cell
3. Enter some text in an adjacent cell and change it's font to something
different then the original one
4. Select both cells and try to change the font by clicking on the font menu
and scrolling down.

Current behavior:
 During scrolling either with the mouse wheel or the slider, the view
constantly jumps back to the top of the drop down menu. This makes selecting a
font that is at the end of the list extremely hard. 

Expected behavior:
Scrolling down a menu should not result in being automatically put beck to the
top. When all the fonts in the selected cells are the same the scrolling
behaves as expected.

Further information: 
The problem has been noticed in both versions 4.2.6.2 and 4.3.1.2 on an Arch
Linux distribution, not sure about older versions. 
Operating System: Linux (Other)
Version: 4.2.6.2 release

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


[Libreoffice-bugs] [Bug 83077] FORMATTING: Problem converting date formats

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83077

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE
 CC||jmadero@gmail.com

--- Comment #1 from Joel Madero jmadero@gmail.com ---
While the technical details are beyond me this is well known (and happens on
other office suites). That being said:
http://extensions.libreoffice.org/extension-center/ct2n-convert-text-to-number-and-dates

I've already requested that this be added in core so I'm going to close this
bug as a duplicate of mine. There are reasons to not implement it (again, the
technical reasons are beyond me) but the request is out there.

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

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


[Libreoffice-bugs] [Bug 33962] Add CT2N Extension

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=33962

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 CC||antonlod...@gmail.com

--- Comment #16 from Joel Madero jmadero@gmail.com ---
*** Bug 83077 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 80474] Mac OS X toolbar background isn't drawn correctly

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=80474

foss f...@openmailbox.org changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED

--- Comment #17 from foss f...@openmailbox.org ---
Looking good in Version: 4.4.0.0.alpha0+
Build ID: e12b6b789e3980b1aac5c02f893edae1979adfe5
TinderBox: MacOSX-x86@49-TDF, Branch:master, Time: 2014-09-04_02:02:58

Thanks so much Jan or addressing this!

Could you have a glance at https://bugs.freedesktop.org/show_bug.cgi?id=51534 ?
Bug about ruler color not adapting LO background color.

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


[Libreoffice-bugs] [Bug 83065] Allow Comment Location to be Moved Upon Creation of Comment

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83065

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

   Hardware|x86-64 (AMD64)  |All
 OS|Linux (All) |All
 Status|UNCONFIRMED |NEW
 Whiteboard||NeedsDevEval
   Severity|normal  |enhancement
 CC||jmadero@gmail.com
Summary|Comments text zone editable |Allow Comment Location to
   |to the creation in  |be Moved Upon Creation of
   |Spreadsheet |Comment
 Ever confirmed|0   |1

--- Comment #1 from Joel Madero jmadero@gmail.com ---
Valid enhancement request - interesting find (I had never noticed this).


Marking as:
New - confirmed
Enhancement

Note: Enhancements are taken up pretty much exclusively by volunteers who
choose what enhancements they want to implement. I have verified that this is a
valid request but this does not come with a guarantee that it'll be
implemented. If you or someone you know would like to try to fix it - patches
are welcome :)

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


[Libreoffice-bugs] [Bug 83025] UI - options window general

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83025

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

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

--- Comment #1 from Joel Madero jmadero@gmail.com ---
The image in the document doesn't load right. Can you attach an actual
screenshot directly to the bug vs. within a spradsheet file.

Marking as NEEDINFO - once you attach a direct image to the bug please set the
bug to UNCONFIRMED. Thanks!

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


[Libreoffice-bugs] [Bug 83357] Buttons for Editing an entry of chapter Index not visible if preview is selected

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83357

--- Comment #5 from Nando Gallo n.ga...@codices.com ---
Created attachment 105723
  -- https://bugs.freedesktop.org/attachment.cgi?id=105723action=edit
a very simple test document

The problem consistently shows up on any document

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


[Libreoffice-bugs] [Bug 82999] PRINTING: Duplex printing does not work for spreadsheet A4 format landscape

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82999

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 CC||jmadero@gmail.com

--- Comment #2 from Joel Madero jmadero@gmail.com ---
Do any of these bugs looks like duplicates of this one:
https://bugs.freedesktop.org/buglist.cgi?list_id=464439short_desc=duplex%20printquery_format=advancedbug_status=NEWbug_status=ASSIGNEDbug_status=REOPENEDshort_desc_type=allwordssubstrproduct=LibreOffice

If so, please close this one as a duplicate. I believe it is but not 100%
positive.

Thanks!

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


[Libreoffice-bugs] [Bug 83357] Buttons for Editing an entry of chapter Index not visible if preview is selected

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83357

Nando Gallo n.ga...@codices.com changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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


[Libreoffice-bugs] [Bug 83357] Buttons for Editing an entry of chapter Index not visible if preview is selected

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83357

--- Comment #6 from Nando Gallo n.ga...@codices.com ---
Comment on attachment 105723
  -- https://bugs.freedesktop.org/attachment.cgi?id=105723
a very simple test document

The bug shows up in the Italian version of Writer - I hanve not tested other
languages on this version of 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 83481] New: EDITING: Incorrect syntax for external references with Excel A1 or R1C1 formula syntax

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83481

  Priority: medium
Bug ID: 83481
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: EDITING: Incorrect syntax for external references with
Excel A1 or R1C1 formula syntax
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: jumbo4...@yahoo.fr
  Hardware: Other
Status: NEW
   Version: 4.1.6.2 release
 Component: Spreadsheet
   Product: LibreOffice

Bug description: it is not possible to build correct external reference with XL
A1 or XL R1C1 formula syntax

Step to reproduce:
1. Create a new spreadsheet
2. Select Tools  Options  LibreOffice Calc  Formula: Formula syntax=Excel
R1C1 or Excel A1
3. Start a formula with =
4. Open an existing spreadsheet
5. Select a cell
6. Return to the new spreadsheet

Observed behavior:
Reference is: 'file:///C:/path to file/test.xls'#Feuil1!R[4]C[1]
= result is #NAME?

Expected behavior:
Syntax should be: ['file:///C:/path to file/test.xls']Feuil1!R[4]C[1]
and result should be the content of the cell

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


[Libreoffice-bugs] [Bug 82514] Other: Sheet disappeared / is completely without data

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82514

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

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

--- Comment #1 from Joel Madero jmadero@gmail.com ---
We'd need to know more about this before it becomes actionable. Useful things:

1. What the document should look like -- an original ODS file would be
fantastic.


Also if it happens sporadically - is there any consistent set of reproducible
steps?

Marking as NEEDINFO - the attached file just proves that there are empty sheets
- but gives us no help in finding out how that happened. Getting an original
file (ods) that we can save and see the loss of data would be great. 

Once more is provided that makes this bug actionable - please set the bug to
UNCONFIRMED. Thank you for your understanding.

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


[Libreoffice-bugs] [Bug 83481] EDITING: Incorrect syntax for external references with Excel A1 or R1C1 formula syntax

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83481

Laurent BP jumbo4...@yahoo.fr changed:

   What|Removed |Added

Version|4.1.6.2 release |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 74419] Crashes

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=74419

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

   What|Removed |Added

 OS|Mac OS X (All)  |All

--- Comment #8 from Robinson Tryon (qubit) qu...@runcibility.com ---
Problem (used to) affect all platforms, so OS - All

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


[Libreoffice-bugs] [Bug 74419] Crashes

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=74419

--- Comment #7 from Robinson Tryon (qubit) qu...@runcibility.com ---
(In reply to comment #0)
 LibreOffice crashes as soon as opening a DOCX file, 100% of the time.  I
 don't know whether this site is publicly accessible and I can't publish the
 file, so I'd like a developer to contact me and I'll send it.

[Received undistributable document for repro]

Tested on Ubuntu 14.04 with LO 4.2.3.3 and 4.3.1.1

REPRO on 4.2.3.3: File crashes LibreOffice immediately when I try to open it.

NOREPRO on 4.3.1.1: File can be opened, every page visited, and text added and
deleted, without a crash occurring.

---

Ryo: Please download LO 4.3.1 release and see if the file still crashes for
you:
https://www.libreoffice.org/download/libreoffice-fresh/

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


[Libreoffice-bugs] [Bug 83025] UI - options window general

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83025

--- Comment #2 from Bugcruncher libobugcrunc...@gmail.com ---
Created attachment 105724
  -- https://bugs.freedesktop.org/attachment.cgi?id=105724action=edit
Screenshot from reporter's document

I can't see anything wrong or bad in reporter's screenshot

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


[Libreoffice-bugs] [Bug 83425] Other: fail new document

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83425

Maxim Monastirsky momonas...@gmail.com changed:

   What|Removed |Added

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

--- Comment #3 from Maxim Monastirsky momonas...@gmail.com ---
Looks like a duplicate of Bug 80755. Feel free to reopen the bug if that's not
the case.

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

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


[Libreoffice-bugs] [Bug 83481] EDITING: Incorrect syntax for external references with Excel A1 or R1C1 formula syntax

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83481

Laurent BP jumbo4...@yahoo.fr changed:

   What|Removed |Added

 Blocks||57929

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


[Libreoffice-bugs] [Bug 82398] EDITING: Text to Columns not applied to selected cells after change 'Format Cells'

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82398

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME
 CC||jmadero@gmail.com

--- Comment #3 from Joel Madero jmadero@gmail.com ---
I am closing this as WFM - it would take some effort from multiple people to
find the patch, review the patch, and backport the patch. While the OP says
it's quite annoying the workaround is quite straightforward. 4.3 is available
and the problem is resolved.

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


[Libreoffice-bugs] [Bug 83480] EDITING: Font selection buggy when multiple cells with different fonts selected

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83480

Maxim Monastirsky momonas...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE
 CC||momonas...@gmail.com

--- Comment #1 from Maxim Monastirsky momonas...@gmail.com ---
Hi,

It's a variation of Bug 80604. I guess it's the same underlying issue.

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

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


[Libreoffice-bugs] [Bug 80604] FORMATTING: Font combobox doesn't function correction when set to use both western and CJK fonts

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=80604

Maxim Monastirsky momonas...@gmail.com changed:

   What|Removed |Added

 CC||davidfabi...@gmail.com

--- Comment #10 from Maxim Monastirsky momonas...@gmail.com ---
*** Bug 83480 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 51534] Ruler background doesn't change according to application background setting

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=51534

--- Comment #13 from Maxim Monastirsky momonas...@gmail.com ---
nomnex, foss: It does work for me if I close  reopen Writer. Can you retest
please?

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


[Libreoffice-bugs] [Bug 74419] Crashes

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=74419

--- Comment #9 from Ryo Furue ryofu...@gmail.com ---
(In reply to comment #7)

 Ryo: Please download LO 4.3.1 release and see if the file
 still crashes for you:
 https://www.libreoffice.org/download/libreoffice-fresh/

Version 4.3.1 works! That is, it does NOT crash on the file on my machine.

Thank you for your help.

Regards,

Ryo

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


[Libreoffice-bugs] [Bug 83406] Redesign LO update process

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83406

Michael Bauer f...@akerbeltz.org changed:

   What|Removed |Added

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

--- Comment #6 from Michael Bauer f...@akerbeltz.org ---
Yeah, every issue is urgent, of course.

This is the first bug ever I've marked as urgent and yes, when small businesses
consider the update process of a product so overly complicated they don't
bother, it IS urgent I'd say. Unless we're making LO just for ourselves.

Weren’t we talking about the update system? Michael, in future please resist 
the urge to cramp a bunch of unrelated issues into one report — be as 
specific as possible. This applies to any software project you report bugs 
for. ;-)

Look, I know that life in general would be so much easier if we could break
down everything into neat little boxes and deal with them calmly, one after the
other. But with all due respect, it doesn't work like that. For the end user,
the 'upgrade process' is one interconnected issue and the reason I referred to
the user settings not being carried over was less of an attempt to file a bug
for that issue but simply part of the narrative I got from the hotel in
question who were complaining about the upgrade process. So I wasn't actually
bunching bugs.

Thirdly, the bug you refer to is specifically OSX whereas I'm talking
cross-platform/Windows, so I'm not so sure it IS a duplicate, so I'm opening it
again unless someone can reassure me that the solution you mentioned works for
ALL OS.

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


[Libreoffice-bugs] [Bug 80650] lower case greek alphabet missing in localized Math symbol table

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=80650

Jacques Guilleron guillero...@aol.com changed:

   What|Removed |Added

 CC||mro...@chemia.uj.edu.pl

--- Comment #42 from Jacques Guilleron guillero...@aol.com ---
*** Bug 83462 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 83462] missing symbols in catalog

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83462

Jacques Guilleron guillero...@aol.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE
 CC||guillero...@aol.com

--- Comment #1 from Jacques Guilleron guillero...@aol.com ---
Hi Janusz,

Thank you to report that. This was however previously reported in 
Bug 80650 - lower case greek alphabet missing in localized Math symbol table
where you can find details and a workaround.

I set status to Duplicate.

regards,

Jacques

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

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


[Libreoffice-bugs] [Bug 74419] Crashes

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=74419

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

   What|Removed |Added

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

--- Comment #10 from Robinson Tryon (qubit) qu...@runcibility.com ---
(In reply to comment #9)
 Version 4.3.1 works! That is, it does NOT crash on the file on my machine.
 

Great!

Status - RESOLVED WORKSFORME

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


[Libreoffice-bugs] [Bug 83406] Redesign LO update process

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83406

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

   What|Removed |Added

 CC||michael.me...@collabora.com

--- Comment #7 from Julien Nabet serval2...@yahoo.fr ---
Michael: thought you might provide point of view as expert dev, since there's a
kind of debate about this tracker.

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


[Libreoffice-bugs] [Bug 83406] Redesign LO update process

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83406

--- Comment #8 from Michael Bauer f...@akerbeltz.org ---
thought you might provide point of view as expert dev, since there's a kind 
of debate about this tracker.

Julien, I'm not 100% sure what you mean. Are you asking on my views on bug
68274?

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


[Libreoffice-bugs] [Bug 81650] FILEOPEN: LibO exported DOCX crashes on reopen

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=81650

Florian Reisinger reisi...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME
 CC||reisi...@gmail.com

--- Comment #7 from Florian Reisinger reisi...@gmail.com ---
Windows SP 1 x64 Version: 4.4.0.0.alpha0+
Build ID: 5ef4bdc7b15686e55fa19f2e98a828763a0cfae6
TinderBox: Win-x86@42, Branch:master, Time: 2014-09-03_10:10:14
No crash

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


[Libreoffice-bugs] [Bug 80650] lower case greek alphabet missing in localized Math symbol table

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=80650

--- Comment #43 from Jacques Guilleron guillero...@aol.com ---
@Andy Comment 32

You said to have added all missing Greek letters. Did you add also their
lowercase names? Else, they will not be recognized in your formulas.

regards,

Jacques

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


[Libreoffice-bugs] [Bug 82244] PRINTING: landscape printing no longer works

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82244

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 CC||jmadero@gmail.com

--- Comment #1 from Joel Madero jmadero@gmail.com ---
Can you try printing to file instead (should be identical to physical print).
No need to go into printer settings - just go to format - Page and set to
landscape, then print to file which results in a pdf exactly the same as what
is printed to printer (goes through cups still I think). Let me know results -
I just did a test and it seems to work fine.

Bodhi 2.x
LibreOffice 4.3.1.2 release

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


[Libreoffice-bugs] [Bug 82226] FORMATTING: Row height changes when deleting a cell's content or by changing its background color

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82226

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

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

--- Comment #6 from Joel Madero jmadero@gmail.com ---
Yes please attach the xlsx also. Marking as NEEDINFO - once you attach please
set to UNCONFIRMED. 

Also - asking devs to dig into a single test case that you're not even sure how
it was made is a hard sell - they are way overworked and don't have time to
address a single test case. Always better to have reproducible steps that we
can do from scratch so we can find out if it's a larger problem or a single
problem with a single 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 82092] FORMATTING: if the whole worksheet is formatted Calc becomes slow

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82092

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

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

--- Comment #1 from Joel Madero jmadero@gmail.com ---
This happens with an empty sheet or with a sheet that has data? Marking as
NEEDINFO - if it's with a worksheet with data - please attach a worksheet that
we can see the issue and then mark as UNCONFIRMED.

Also - do you know if this is new to 4.3? Version is the oldest version that
you see the problem, not the latest version.

Thanks for your help.

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


[Libreoffice-bugs] [Bug 82090] Crash on Sub-Totals with Custom sort list

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82090

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

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

--- Comment #2 from Joel Madero jmadero@gmail.com ---
We need a test case - marking as NEEDINFO. Once you attach a document please
move it to UNCONFIRMED. Thanks

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


[Libreoffice-bugs] [Bug 82058] FORMATTING: formatting incompatible with older spreadsheets

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82058

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

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

--- Comment #1 from Joel Madero jmadero@gmail.com ---
We need an old spreadsheet to test with. Please attach a spreadsheet and then
mark the bug as UNCONFIRMED.


Marking as NEEDINFO.

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


[Libreoffice-bugs] [Bug 82398] EDITING: Text to Columns not applied to selected cells after change 'Format Cells'

2014-09-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82398

--- Comment #4 from Alastair Munro alast...@alastair-munro.com ---
Thanks fine. I added the LibreOffice apt repos and am using 4.3, and can
confirm the issue does not exist in this release. Shame the ubuntu versions are
out of date. Thanks for looking into 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


  1   2   3   >