[Libreoffice-commits] .: 4 commits - configure.ac solenv/gbuild

2013-01-01 Thread Libreoffice Gerrit user
 configure.ac |   16 +---
 solenv/gbuild/AllLangResTarget.mk|4 ++--
 solenv/gbuild/Helper.mk  |2 +-
 solenv/gbuild/InstallModuleTarget.mk |2 +-
 solenv/gbuild/SdiTarget.mk   |2 +-
 solenv/gbuild/TargetLocations.mk |   10 ++
 6 files changed, 20 insertions(+), 16 deletions(-)

New commits:
commit 00234d0578419c3d0847dd89554186146121f60e
Author: David Tardon dtar...@redhat.com
Date:   Tue Jan 1 08:59:17 2013 +0100

replace bashisms

Change-Id: I4d7709effb8cb98827e6bdd62e422186d61ed2a0

diff --git a/configure.ac b/configure.ac
index eb0dd9f..68723f4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -7546,8 +7546,8 @@ if test $enable_python = system; then
 # 2.6.2 currently on OpenSUSE 12.1?
 # rpm -q mingw32-python = mingw32-python-2.6.2-17.17.noarch
 PYTHON_VERSION=$python_version.2
-PYTHON_VERSION_MAJOR=${python_version%.*}
-PYTHON_VERSION_MINOR=${python_version#*.}
+PYTHON_VERSION_MAJOR=`echo $python_version | cut -d . -f 1`
+PYTHON_VERSION_MINOR=`echo $python_version | cut -d . -f 2`
 break
 fi
 done
commit 55563832c492e5b03a88763cf15384655ba31181
Author: David Tardon dtar...@redhat.com
Date:   Tue Jan 1 08:54:11 2013 +0100

check for python.exe too

Change-Id: I6f66348f8e40a7f977f33e145171489d7c57b8be

diff --git a/configure.ac b/configure.ac
index 643f232..eb0dd9f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -7532,7 +7532,12 @@ if test $enable_python = system; then
 if test -f 
${MINGW_SYSROOT}/include/python${python_version}/Python.h; then
 
PYTHON_CFLAGS=-I${MINGW_SYSROOT}/include/python$python_version
 PYTHON_LIBS=-L${MINGW_SYSROOT}lib -lpython$python_version 
$python_libs
-MINGW_PYTHON_EXE=python.exe
+AC_MSG_CHECKING([for python.exe])
+AS_IF([test -f $MINGW_SYSROOT/mingw/bin/python.exe],
+  [AC_MSG_RESULT([$MINGW_SYSROOT/mingw/bin/python.exe])
+   MINGW_PYTHON_EXE=python.exe],
+  [AC_MSG_RESULT([not found])
+   AC_MSG_ERROR([could not find python.exe])])
 libo_MINGW_CHECK_DLL([PYTHON], [libpython$python_version])
 libo_MINGW_CHECK_DLL([READLINE], [libreadline6])
 libo_MINGW_CHECK_DLL([TERMCAP], [libtermcap])
commit 3f22967547f529e46651c9247d696dd7668943dc
Author: David Tardon dtar...@redhat.com
Date:   Tue Jan 1 08:47:36 2013 +0100

fail early if python version cannot be determined

Change-Id: I8fea82f8d4f779b0e7f8550fb67b794d6ae913ba

diff --git a/configure.ac b/configure.ac
index 8428abc..643f232 100644
--- a/configure.ac
+++ b/configure.ac
@@ -7546,6 +7546,11 @@ if test $enable_python = system; then
 break
 fi
 done
+AC_MSG_CHECKING([for python version])
+AS_IF([test -n $PYTHON_VERSION],
+  [AC_MSG_RESULT([$PYTHON_VERSION])],
+  [AC_MSG_RESULT([not found])
+   AC_MSG_ERROR([no usable python found])])
 test -n $PYTHON_CFLAGS  break
 fi
 fi
commit 3638ffa2a3d8007c3e6dc83ba7ff712fc1609bb3
Author: David Tardon dtar...@redhat.com
Date:   Tue Jan 1 08:30:10 2013 +0100

always set library path

Change-Id: Id8984f64615ac5d2ecfccca5d1d44ea5db76811c

diff --git a/solenv/gbuild/AllLangResTarget.mk 
b/solenv/gbuild/AllLangResTarget.mk
index c85b612..9e348e7 100644
--- a/solenv/gbuild/AllLangResTarget.mk
+++ b/solenv/gbuild/AllLangResTarget.mk
@@ -48,7 +48,7 @@
 # SrsPartMergeTarget class
 
 gb_SrsPartMergeTarget_TRANSEXDEPS := $(call 
gb_Executable_get_runtime_dependencies,transex3)
-gb_SrsPartMergeTarget_TRANSEXCOMMAND := $(gb_Helper_set_ld_path) $(call 
gb_Executable_get_command,transex3)
+gb_SrsPartMergeTarget_TRANSEXCOMMAND := $(call 
gb_Executable_get_command,transex3)
 
 define gb_SrsPartMergeTarget__command
 $(call gb_Output_announce,$(3),$(true),srs,1)
@@ -87,7 +87,7 @@ endef
 #  gb_SrsPartTarget__command_dep
 
 gb_ResTarget_RSCDEPS := $(call gb_Executable_get_runtime_dependencies,rsc)
-gb_ResTarget_RSCCOMMAND := SOLARBINDIR=$(OUTDIR_FOR_BUILD)/bin 
$(gb_Helper_set_ld_path) $(call gb_Executable_get_command,rsc)
+gb_ResTarget_RSCCOMMAND := SOLARBINDIR=$(OUTDIR_FOR_BUILD)/bin $(call 
gb_Executable_get_command,rsc)
 
 define gb_SrsPartTarget__command
 $(call gb_Helper_abbreviate_dirs,\
diff --git a/solenv/gbuild/Helper.mk b/solenv/gbuild/Helper.mk
index b587fa9..15bf965 100644
--- a/solenv/gbuild/Helper.mk
+++ b/solenv/gbuild/Helper.mk
@@ -206,7 +206,7 @@ $(foreach def,$(1),$(if $(filter TRUE 
YES,$($(def))),-D$(def)))
 endef
 
 define gb_Helper_execute
-$(gb_Helper_set_ld_path) $(call gb_Executable_get_command,$(firstword $(1))) 
$(wordlist 2,$(words $(1)),$(1))
+$(call gb_Executable_get_command,$(firstword 

[Libreoffice-commits] .: i18npool/inc

2013-01-01 Thread Libreoffice Gerrit user
 i18npool/inc/collator_unicode.hxx |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 5275fabcb0c3941e32c23b9a9f66f395ab10b251
Author: Tor Lillqvist t...@iki.fi
Date:   Tue Jan 1 11:31:05 2013 +0200

WaE: private field 'hModule' is not used

Change-Id: If3fc6937e66e9261255a9b197f995d923cc31132

diff --git a/i18npool/inc/collator_unicode.hxx 
b/i18npool/inc/collator_unicode.hxx
index e8257ed..c3a5491 100644
--- a/i18npool/inc/collator_unicode.hxx
+++ b/i18npool/inc/collator_unicode.hxx
@@ -69,7 +69,9 @@ protected:
 const sal_Char *implementationName;
 private:
 RuleBasedCollator *uca_base, *collator;
+#ifndef DISABLE_DYNLOADING
 oslModule hModule;
+#endif
 };
 
 } } } }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: configure.ac

2013-01-01 Thread Libreoffice Gerrit user
 configure.ac |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 61e0deb8c5200cdc66a8d6215a462e433f1804da
Author: Stephan Bergmann sberg...@redhat.com
Date:   Tue Jan 1 12:13:23 2013 +0100

Obsolete AM_CONFIG_HEADER - AC_CONFIG_HEADERS

(cf. https://trac.macports.org/ticket/37428 gnome-keyring @2.30.3 
autoreconf
fails with automake 1.13: possibly undefined macro: AM_CONFIG_HEADER)

diff --git a/configure.ac b/configure.ac
index aef555b..89562c5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -123,7 +123,7 @@ AC_SUBST(CPPUNIT_CXXFLAGS)
 # ==
 # Setup config.h
 # ==
-AM_CONFIG_HEADER([config.h])
+AC_CONFIG_HEADERS([config.h])
 AX_PREFIX_CONFIG_H([include/cppunit/config-auto.h])
 
 # =
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: 4 commits - i18npool/inc sd/source vcl/inc

2013-01-01 Thread Libreoffice Gerrit user
 i18npool/inc/textconversion.hxx   |2 ++
 sd/source/ui/dlg/RemoteDialog.cxx |4 ++--
 vcl/inc/ios/salgdicommon.hxx  |   30 --
 vcl/inc/ios/salprn.h  |2 +-
 4 files changed, 21 insertions(+), 17 deletions(-)

New commits:
commit ae5c574ac24ed8979dcf03da87cd14c078db2a07
Author: Tor Lillqvist t...@iki.fi
Date:   Tue Jan 1 13:57:50 2013 +0200

WaE: private field 'mPreviouslyDiscoverable' is not used

Change-Id: Ib3f16646035fe29aa64608a17f1a3063f9ebde95

diff --git a/sd/source/ui/dlg/RemoteDialog.cxx 
b/sd/source/ui/dlg/RemoteDialog.cxx
index 4d8e755..b41db5e76 100644
--- a/sd/source/ui/dlg/RemoteDialog.cxx
+++ b/sd/source/ui/dlg/RemoteDialog.cxx
@@ -25,6 +25,8 @@ RemoteDialog::RemoteDialog( Window *pWindow ) :
 mClientBox( this, NULL, SdResId( LB_SERVERS ) ),
 mPreviouslyDiscoverable()
 {
+(void) mPreviouslyDiscoverable; // avoid warnings about unused member
+
 #ifdef ENABLE_SDREMOTE
 FreeResource();
 
@@ -47,8 +49,6 @@ RemoteDialog::RemoteDialog( Window *pWindow ) :
 mButtonConnect.SetClickHdl( LINK( this, RemoteDialog, HandleConnectButton 
) );
 SetCloseHdl( LINK( this, RemoteDialog, CloseHdl ) );
 mButtonCancel.SetClickHdl( LINK( this, RemoteDialog, CloseHdl ) );
-#else
-(void) mPreviouslyDiscoverable; // avoid warnings about unused member
 #endif
 }
 
commit a754161b51a10d01fe78b02c7213d3cf2b63fae5
Author: Tor Lillqvist t...@iki.fi
Date:   Tue Jan 1 12:02:44 2013 +0200

WaE: duplicate 'const' declaration specifier

Change-Id: I70b12a4de7edd785f87e4de3f398e90bf54ca84f

diff --git a/vcl/inc/ios/salprn.h b/vcl/inc/ios/salprn.h
index 6ead371..c383af4 100644
--- a/vcl/inc/ios/salprn.h
+++ b/vcl/inc/ios/salprn.h
@@ -134,7 +134,7 @@ class IosSalPrinter : public SalPrinter
   bool i_bDirect,
   ImplJobSetup* i_pSetupData );
 // implement pull model print system
-virtual sal_BoolStartJob( const const rtl::OUString* 
pFileName,
+virtual sal_BoolStartJob( const rtl::OUString* 
pFileName,
   const rtl::OUString rJobName,
   const rtl::OUString rAppName,
   ImplJobSetup* i_pSetupData,
commit 436d8669eae4d95976b6d29b04c2f180ebc1ea67
Author: Tor Lillqvist t...@iki.fi
Date:   Tue Jan 1 11:59:46 2013 +0200

WaE: unused private field

The fields were not really unused but the compiler can't know that,
and it was done in a horribly hacky way anyway.

Same fix as sberg did for the corresponding MacOSX code. (Yeah, should
factor out the commonality. Not that I know whether the VCL code for
iOS will ever be used.)

Change-Id: I573073c3f5c15f0a40ed72c9d58578fc80f65b93

diff --git a/vcl/inc/ios/salgdicommon.hxx b/vcl/inc/ios/salgdicommon.hxx
index 5a73f37..c27ebef 100644
--- a/vcl/inc/ios/salgdicommon.hxx
+++ b/vcl/inc/ios/salgdicommon.hxx
@@ -26,26 +26,28 @@ class RGBAColor
 public:
 RGBAColor( SalColor );
 RGBAColor( float fRed, float fGreen, float fBlue, float fAlpha ); 
//NOTUSEDYET
-const float* AsArray() const { return m_fRed; }
-bool IsVisible() const { return m_fAlpha  0; }
-void SetAlpha( float fAlpha ) { m_fAlpha = fAlpha; }
+const CGFloat* AsArray() const { return m_fRGBA; }
+bool IsVisible() const { return m_fRGBA[3]  0; }
+void SetAlpha( float fAlpha ) { m_fRGBA[3] = fAlpha; }
 private:
-float m_fRed, m_fGreen, m_fBlue, m_fAlpha;
+CGFloat m_fRGBA[4]; // red, green, blue, alpha
 };
 
 inline RGBAColor::RGBAColor( SalColor nSalColor )
-:   m_fRed( SALCOLOR_RED(nSalColor) * (1.0/255))
-,   m_fGreen( SALCOLOR_GREEN(nSalColor) * (1.0/255))
-,   m_fBlue( SALCOLOR_BLUE(nSalColor) * (1.0/255))
-,   m_fAlpha( 1.0 )  // opaque
-{}
+{
+m_fRGBA[0] = SALCOLOR_RED(nSalColor) * (1.0/255);
+m_fRGBA[1] = SALCOLOR_GREEN(nSalColor) * (1.0/255);
+m_fRGBA[2] = SALCOLOR_BLUE(nSalColor) * (1.0/255);
+m_fRGBA[3] = 1.0; // opaque
+}
 
 inline RGBAColor::RGBAColor( float fRed, float fGreen, float fBlue, float 
fAlpha )
-:   m_fRed( fRed )
-,   m_fGreen( fGreen )
-,   m_fBlue( fBlue )
-,   m_fAlpha( fAlpha )
-{}
+{
+m_fRGBA[0] = fRed;
+m_fRGBA[1] = fGreen;
+m_fRGBA[2] = fBlue;
+m_fRGBA[3] = fAlpha;
+}
 
 class XorEmulation
 {
commit 993c3bff0173f5c9f8941e6b036d3e57f4b68cf1
Author: Tor Lillqvist t...@iki.fi
Date:   Tue Jan 1 11:39:50 2013 +0200

We don't use these when DISABLE_DYNLOADING

Change-Id: I3be187cf7e87697e37a6dafbcdf8d0a4b924639e

diff --git a/i18npool/inc/textconversion.hxx b/i18npool/inc/textconversion.hxx
index a56f5d9..735b000 100644
--- a/i18npool/inc/textconversion.hxx
+++ b/i18npool/inc/textconversion.hxx
@@ -82,8 +82,10 @@ public:
 throw( com::sun::star::uno::RuntimeException );
 protected :
 const 

[Libreoffice-commits] .: 2 commits - pyuno/CustomTarget_python_shell.mk pyuno/CustomTarget_pyversion.mk pyuno/Executable_python_wrapper.mk pyuno/Module_pyuno.mk pyuno/zipcore

2013-01-01 Thread Libreoffice Gerrit user
 pyuno/CustomTarget_python_shell.mk |   25 +++--
 pyuno/CustomTarget_pyversion.mk|   37 -
 pyuno/Executable_python_wrapper.mk |8 
 pyuno/Module_pyuno.mk  |2 --
 pyuno/zipcore/mac.sh   |9 +
 pyuno/zipcore/nonmac.sh|   12 
 pyuno/zipcore/python.cxx   |2 --
 pyuno/zipcore/python.sh|   23 ---
 pyuno/zipcore/pyversion.inc|   19 ---
 9 files changed, 40 insertions(+), 97 deletions(-)

New commits:
commit 2e9ec0a8bcb29681c54b16fadf6b47cab6a6b0db
Author: David Tardon dtar...@redhat.com
Date:   Tue Jan 1 12:42:09 2013 +0100

simplify processing of python.sh

Change-Id: I583407233fad1f7aaccc137642e5f134c3ba2874

diff --git a/pyuno/CustomTarget_python_shell.mk 
b/pyuno/CustomTarget_python_shell.mk
index feed2e4..f4df015 100644
--- a/pyuno/CustomTarget_python_shell.mk
+++ b/pyuno/CustomTarget_python_shell.mk
@@ -26,23 +26,28 @@
 
 $(eval $(call gb_CustomTarget_CustomTarget,pyuno/python_shell))
 
-$(call gb_CustomTarget_get_target,pyuno/python_shell) : \
-$(call gb_CustomTarget_get_workdir,pyuno/python_shell)/python.sh
+$(eval $(call gb_CustomTarget_register_targets,pyuno/python_shell,\
+   os.sh \
+   python.sh \
+))
 
 ifeq ($(OS),MACOSX)
 pyuno_PYTHON_SHELL_VERSION:=$(PYTHON_VERSION_MAJOR).$(PYTHON_VERSION_MINOR)
-pyuno_PYTHON_SHELL_STRIPRULE:=-e '/^NONMACSECTION/,/^MACSECTION/d'
 else
 pyuno_PYTHON_SHELL_VERSION:=$(PYTHON_VERSION)
-pyuno_PYTHON_SHELL_STRIPRULE:=-e '/^NONMACSECTION/d' -e '/^MACSECTION/,$$d'
 endif
 
-$(call gb_CustomTarget_get_workdir,pyuno/python_shell)/python.sh : 
$(SRCDIR)/pyuno/zipcore/python.sh | \
-$(call gb_CustomTarget_get_workdir,pyuno/python_shell)/.dir
+$(call gb_CustomTarget_get_workdir,pyuno/python_shell)/python.sh : \
+   $(SRCDIR)/pyuno/zipcore/python.sh \
+   $(call gb_CustomTarget_get_workdir,pyuno/python_shell)/os.sh
+   $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),CAT,1)
+   cat $^  $@  chmod +x $@
+
+$(call gb_CustomTarget_get_workdir,pyuno/python_shell)/os.sh : \
+   $(SRCDIR)/pyuno/zipcore/$(if $(filter 
MACOSX,$(OS)),mac,nonmac).sh
$(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),SED,1)
-   sed -e s/%%PYVERSION%%/$(pyuno_PYTHON_SHELL_VERSION)/g -e \
-s/%%OOO_LIBRARY_PATH_VAR%%/$(gb_Helper_LIBRARY_PATH_VAR)/g \
-$(pyuno_PYTHON_SHELL_STRIPRULE)  $?  $@
-   chmod +x $@
+   sed -e s/%%PYVERSION%%/$(pyuno_PYTHON_SHELL_VERSION)/g \
+   -e s/%%OOO_LIBRARY_PATH_VAR%%/$(gb_Helper_LIBRARY_PATH_VAR)/g 
\
+   $  $@
 
 # vim: set noet sw=4 ts=4:
diff --git a/pyuno/zipcore/mac.sh b/pyuno/zipcore/mac.sh
new file mode 100644
index 000..7543e6d
--- /dev/null
+++ b/pyuno/zipcore/mac.sh
@@ -0,0 +1,9 @@
+PYTHONHOME=$sd_prog/LibreOfficePython.framework
+export PYTHONHOME
+
+pybasislibdir=$PYTHONHOME/Versions/%%PYVERSION%%/lib/python%%PYVERSION%%
+PYTHONPATH=$sd_prog:$pybasislibdir:$pybasislibdir/lib-dynload:$pybasislibdir/lib-tk:$pybasislibdir/site-packages${PYTHONPATH+:$PYTHONPATH}
+export PYTHONPATH
+
+# execute binary
+exec 
$PYTHONHOME/Versions/%%PYVERSION%%/Resources/Python.app/Contents/MacOS/LibreOfficePython
 $@
diff --git a/pyuno/zipcore/nonmac.sh b/pyuno/zipcore/nonmac.sh
new file mode 100644
index 000..0757b11
--- /dev/null
+++ b/pyuno/zipcore/nonmac.sh
@@ -0,0 +1,12 @@
+# Set %%OOO_LIBRARY_PATH_VAR%% so that python.bin finds libpython2.6.so (this
+# can go once python.bin contains a proper RPATH):
+%%OOO_LIBRARY_PATH_VAR%%=$sd_prog${%%OOO_LIBRARY_PATH_VAR%%:+:$%%OOO_LIBRARY_PATH_VAR%%}
+export %%OOO_LIBRARY_PATH_VAR%%
+
+PYTHONPATH=$sd_prog:$sd_prog/python-core-%%PYVERSION%%/lib:$sd_prog/python-core-%%PYVERSION%%/lib/lib-dynload:$sd_prog/python-core-%%PYVERSION%%/lib/lib-tk:$sd_prog/python-core-%%PYVERSION%%/lib/site-packages${PYTHONPATH+:$PYTHONPATH}
+export PYTHONPATH
+PYTHONHOME=$sd_prog/python-core-%%PYVERSION%%
+export PYTHONHOME
+
+# execute binary
+exec $sd_prog/python.bin $@
diff --git a/pyuno/zipcore/python.sh b/pyuno/zipcore/python.sh
index c232c99..89e73b7 100644
--- a/pyuno/zipcore/python.sh
+++ b/pyuno/zipcore/python.sh
@@ -43,26 +43,3 @@ export UNO_PATH
 : ${URE_BOOTSTRAP=vnd.sun.star.pathname:$sd_prog/fundamentalrc}
 export URE_BOOTSTRAP
 
-NONMACSECTION
-# Set %%OOO_LIBRARY_PATH_VAR%% so that python.bin finds libpython2.6.so (this
-# can go once python.bin contains a proper RPATH):
-%%OOO_LIBRARY_PATH_VAR%%=$sd_prog${%%OOO_LIBRARY_PATH_VAR%%:+:$%%OOO_LIBRARY_PATH_VAR%%}
-export %%OOO_LIBRARY_PATH_VAR%%
-
-PYTHONPATH=$sd_prog:$sd_prog/python-core-%%PYVERSION%%/lib:$sd_prog/python-core-%%PYVERSION%%/lib/lib-dynload:$sd_prog/python-core-%%PYVERSION%%/lib/lib-tk:$sd_prog/python-core-%%PYVERSION%%/lib/site-packages${PYTHONPATH+:$PYTHONPATH}
-export PYTHONPATH
-PYTHONHOME=$sd_prog/python-core-%%PYVERSION%%
-export 

[Libreoffice-commits] .: svtools/source

2013-01-01 Thread Libreoffice Gerrit user
 svtools/source/config/miscopt.cxx |   23 ---
 1 file changed, 12 insertions(+), 11 deletions(-)

New commits:
commit 4ae569eb3e6d587aed6885b46c78f0d9bcbbb0b2
Author: LeMoyne Castle lemoyne.cas...@gmail.com
Date:   Mon Dec 31 00:18:35 2012 -0700

Minimal fix fdo#58766 Macro Recorder opt not saved

Load of the last Misc. config item is skipped due to
its index  == # of strings in array in GetPropertyNames.
Omission in middle drops last item -
never gets to the Enable Macro Recorder option.

Change-Id: If99e0aa89e82ffc362f5e4bda712881a546e510a
Reviewed-on: https://gerrit.libreoffice.org/1523
Reviewed-by: Tor Lillqvist t...@iki.fi
Tested-by: Tor Lillqvist t...@iki.fi

diff --git a/svtools/source/config/miscopt.cxx 
b/svtools/source/config/miscopt.cxx
index c3666d0..d79ad29 100644
--- a/svtools/source/config/miscopt.cxx
+++ b/svtools/source/config/miscopt.cxx
@@ -43,28 +43,29 @@ using namespace ::com::sun::star;
 #define ASCII_STR(s)OUString( 
RTL_CONSTASCII_USTRINGPARAM(s) )
 #define ROOTNODE_MISC   ASCII_STR(Office.Common/Misc)
 
+// PROPERTYHANDLE defines must be sequential from zero for Commit/Load
 #define PROPERTYNAME_PLUGINSENABLED ASCII_STR(PluginsEnabled)
-#define PROPERTYHANDLE_PLUGINSENABLED   0
+#define PROPERTYHANDLE_PLUGINSENABLED   0
 #define PROPERTYNAME_SYMBOLSET  ASCII_STR(SymbolSet)
-#define PROPERTYHANDLE_SYMBOLSET1
+#define PROPERTYHANDLE_SYMBOLSET1
 #define PROPERTYNAME_TOOLBOXSTYLE   ASCII_STR(ToolboxStyle)
-#define PROPERTYHANDLE_TOOLBOXSTYLE 2
+#define PROPERTYHANDLE_TOOLBOXSTYLE 2
 #define PROPERTYNAME_USESYSTEMFILEDIALOGASCII_STR(UseSystemFileDialog)
-#define PROPERTYHANDLE_USESYSTEMFILEDIALOG  3
+#define PROPERTYHANDLE_USESYSTEMFILEDIALOG  3
 #define PROPERTYNAME_SYMBOLSTYLEASCII_STR(SymbolStyle)
-#define PROPERTYHANDLE_SYMBOLSTYLE  4
+#define PROPERTYHANDLE_SYMBOLSTYLE  4
 #define PROPERTYNAME_USESYSTEMPRINTDIALOG   ASCII_STR(UseSystemPrintDialog)
-#define PROPERTYHANDLE_USESYSTEMPRINTDIALOG 5
+#define PROPERTYHANDLE_USESYSTEMPRINTDIALOG 5
 #define PROPERTYNAME_SHOWLINKWARNINGDIALOG  ASCII_STR(ShowLinkWarningDialog)
-#define PROPERTYHANDLE_SHOWLINKWARNINGDIALOG 7
+#define PROPERTYHANDLE_SHOWLINKWARNINGDIALOG6
 #define PROPERTYNAME_DISABLEUICUSTOMIZATION ASCII_STR(DisableUICustomization)
-#define PROPERTYHANDLE_DISABLEUICUSTOMIZATION   8
+#define PROPERTYHANDLE_DISABLEUICUSTOMIZATION   7
 #define PROPERTYNAME_ALWAYSALLOWSAVEASCII_STR(AlwaysAllowSave)
-#define PROPERTYHANDLE_ALWAYSALLOWSAVE  9
+#define PROPERTYHANDLE_ALWAYSALLOWSAVE  8
 #define PROPERTYNAME_EXPERIMENTALMODE   ASCII_STR(ExperimentalMode)
-#define PROPERTYHANDLE_EXPERIMENTALMODE 10
+#define PROPERTYHANDLE_EXPERIMENTALMODE 9
 #define PROPERTYNAME_MACRORECORDERMODE   ASCII_STR(MacroRecorderMode)
-#define PROPERTYHANDLE_MACRORECORDERMODE11
+#define PROPERTYHANDLE_MACRORECORDERMODE10
 
 #define VCL_TOOLBOX_STYLE_FLAT  ((sal_uInt16)0x0004) // from 
vcl/toolbox.hxx
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PUSHED] Minimal fix fdo#58766 Macro Recorder opt not saved

2013-01-01 Thread Tor Lillqvist (via Code Review)
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/1523

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


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

Gerrit-MessageType: merged
Gerrit-Change-Id: If99e0aa89e82ffc362f5e4bda712881a546e510a
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: LeMoyne Castle lemoyne.cas...@gmail.com
Gerrit-Reviewer: Tor Lillqvist t...@iki.fi

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


[PATCH] fdo#55582 writer, calc: insert shapes also when shapes selec...

2013-01-01 Thread Lennard Wasserthal (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1524

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/24/1524/1

fdo#55582 writer, calc: insert shapes also when shapes selected

In writer, Pasting shapes overwrote others that were selected.
In calc, the edit mode when shapes were selected had no paste function.

Change-Id: I9f4c4b674c5a439aade5ce943f3b34577f8e2281
Signed-off-by: Lennard wassert...@nefkom.net
---
M sc/sdi/drawsh.sdi
M sc/source/ui/drawfunc/drawsh5.cxx
M sw/source/ui/dochdl/swdtflvr.cxx
3 files changed, 9 insertions(+), 3 deletions(-)



diff --git a/sc/sdi/drawsh.sdi b/sc/sdi/drawsh.sdi
index ab2337f..914b53d 100644
--- a/sc/sdi/drawsh.sdi
+++ b/sc/sdi/drawsh.sdi
@@ -143,6 +143,7 @@
 SID_DELETE_CONTENTS [ ExecMethod = ExecDrawFunc; StateMethod = 
GetDrawFuncState; Export = FALSE; ]
 SID_CUT [ ExecMethod = ExecDrawFunc; StateMethod = 
GetDrawFuncState; Export = FALSE; ]
 SID_COPY[ ExecMethod = ExecDrawFunc; StateMethod = 
GetDrawFuncState; Export = FALSE; ]
+SID_PASTE   [ ExecMethod = ExecDrawFunc; StateMethod = 
GetDrawFuncState; Export = FALSE; ]
 SID_SELECTALL   [ ExecMethod = ExecDrawFunc; StateMethod = 
GetDrawFuncState; Export = FALSE; ]
 SID_OBJECT_ROTATE   [ ExecMethod = ExecDrawFunc; StateMethod = GetState; 
Export = FALSE; ]
 SID_OBJECT_MIRROR   [ ExecMethod = ExecDrawFunc; StateMethod = GetState; 
Export = FALSE; ]
diff --git a/sc/source/ui/drawfunc/drawsh5.cxx 
b/sc/source/ui/drawfunc/drawsh5.cxx
index fa4c2ec..0f2fc17 100644
--- a/sc/source/ui/drawfunc/drawsh5.cxx
+++ b/sc/source/ui/drawfunc/drawsh5.cxx
@@ -23,6 +23,7 @@
 #include sfx2/request.hxx
 #include sfx2/bindings.hxx
 #include tools/urlobj.hxx
+#include cliputil.hxx
 #include svx/svxdlg.hxx
 #include svx/dialogs.hrc
 #include svx/fmglob.hxx
@@ -357,7 +358,7 @@
 break;
 
 case SID_PASTE:
-OSL_FAIL( SdrView::PasteClipboard not supported anymore );
+ScClipUtil::PasteFromClipboard ( GetViewData(), 
GetViewData()-GetViewShell(), true );
 break;
 
 case SID_SELECTALL:
diff --git a/sw/source/ui/dochdl/swdtflvr.cxx b/sw/source/ui/dochdl/swdtflvr.cxx
index 2267a66..88cc4f4 100644
--- a/sw/source/ui/dochdl/swdtflvr.cxx
+++ b/sw/source/ui/dochdl/swdtflvr.cxx
@@ -3065,8 +3065,8 @@
 
 bool bKillPaMs = false;
 
-//Delete selected content, not at table-selection and table in Clipboard
-if( rShell.HasSelection()  !( nSelection  
nsSelectionType::SEL_TBL_CELLS))
+//Delete selected content, not at table-selection and table in Clipboard, 
and dont delete hovering graphics.
+if( rShell.HasSelection()  !( nSelection  
nsSelectionType::SEL_TBL_CELLS)  !( nSelection  nsSelectionType::SEL_DRW))
 {
 bKillPaMs = true;
 rShell.SetRetainSelection( true );
@@ -3083,6 +3083,10 @@
 }
 rShell.SetRetainSelection( false );
 }
+if ( nSelection  nsSelectionType::SEL_DRW) //unselect hovering graphics
+{
+   rShell.ResetSelect(NULL,false);
+}
 
 sal_Bool bInWrd = sal_False, bEndWrd = sal_False, bSttWrd = sal_False,
  bSmart = 0 != (TRNSFR_DOCUMENT_WORD  eBufferType);

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I9f4c4b674c5a439aade5ce943f3b34577f8e2281
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Lennard Wasserthal wassert...@nefkom.net

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


linux / solaris vs other *nix file handling in sal/osl/unx/file.c

2013-01-01 Thread Riccardo Magliocchetti

Hello,

does anyone know why linux and solaris are using pread / pwrite syscalls 
while other unixes are using read + lseek? The code is at least 
FileHandle_Impl::writeAt which AFAIU is the base for the osl_* file 
functions.


Googling a bit shows that postgresql discussed the issue in 2003 and at 
the time the only unix missing pread was HPUX 10.20 
http://archives.postgresql.org/pgsql-patches/2003-02/msg00205.php


Don't know how relevant is HPUX for libreoffice, hope 2013 is not the 
year of CDE on desktop :)


If the idea is sound i can cook a patch, but i'd like to have some 
feedback from *BSD / MacOS X people that will compile the new code path.


For reference this distinction got introduced a bit more than 3 years 
ago in b76cb86e


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


[Libreoffice-commits] .: cui/source sfx2/source solenv/inc

2013-01-01 Thread Libreoffice Gerrit user
 cui/source/dialogs/about.src |2 +-
 sfx2/source/appl/app.src |2 +-
 solenv/inc/minor.mk  |2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 4f21a0de363116cde65151d09ef4af9aff08886c
Author: Andras Timar ati...@suse.com
Date:   Tue Jan 1 14:42:33 2013 +0100

Bump copyright year to 2013

Change-Id: Iab660dcfffc2a511092398926338ed06f6408925

diff --git a/cui/source/dialogs/about.src b/cui/source/dialogs/about.src
index 9cd728f..defcf90 100644
--- a/cui/source/dialogs/about.src
+++ b/cui/source/dialogs/about.src
@@ -75,7 +75,7 @@ ModalDialog RID_DEFAULTABOUT
 };
 String ABOUT_STR_COPYRIGHT
 {
-Text[ en-US ] = Copyright © 2000 - 2012 LibreOffice contributors 
and/or their affiliates;
+Text[ en-US ] = Copyright © 2000 - 2013 LibreOffice contributors 
and/or their affiliates;
 };
 String ABOUT_STR_BASED
 {
diff --git a/sfx2/source/appl/app.src b/sfx2/source/appl/app.src
index 78457ae..e32c5db 100644
--- a/sfx2/source/appl/app.src
+++ b/sfx2/source/appl/app.src
@@ -543,7 +543,7 @@ ModalDialog DLG_HELP_LICENSING
 String STR_LICENSING_INFORMATION_4
 {
 Text [ en-US ] =
-Copyright © 2000, 2012 LibreOffice contributors and/or their 
affiliates. All rights\n
+Copyright © 2000, 2013 LibreOffice contributors and/or their 
affiliates. All rights\n
 reserved. ;
 };
 String STR_LICENSING_INFORMATION_5
diff --git a/solenv/inc/minor.mk b/solenv/inc/minor.mk
index 36f5986..7f9f543 100644
--- a/solenv/inc/minor.mk
+++ b/solenv/inc/minor.mk
@@ -8,4 +8,4 @@ VERSIONMAJOR=4
 VERSIONMINOR=1
 VERSIONMICRO=0
 
-COPYRIGHTYEARRANGE=2000-2012
+COPYRIGHTYEARRANGE=2000-2013
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'libreoffice-4-0' - cui/source sfx2/source solenv/inc

2013-01-01 Thread Libreoffice Gerrit user
 cui/source/dialogs/about.src |2 +-
 sfx2/source/appl/app.src |2 +-
 solenv/inc/minor.mk  |2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 51d43bd1b9189b0510a4d4ce392f5ac234441948
Author: Andras Timar ati...@suse.com
Date:   Tue Jan 1 14:42:33 2013 +0100

Bump copyright year to 2013

Change-Id: Iab660dcfffc2a511092398926338ed06f6408925

diff --git a/cui/source/dialogs/about.src b/cui/source/dialogs/about.src
index 9cd728f..defcf90 100644
--- a/cui/source/dialogs/about.src
+++ b/cui/source/dialogs/about.src
@@ -75,7 +75,7 @@ ModalDialog RID_DEFAULTABOUT
 };
 String ABOUT_STR_COPYRIGHT
 {
-Text[ en-US ] = Copyright © 2000 - 2012 LibreOffice contributors 
and/or their affiliates;
+Text[ en-US ] = Copyright © 2000 - 2013 LibreOffice contributors 
and/or their affiliates;
 };
 String ABOUT_STR_BASED
 {
diff --git a/sfx2/source/appl/app.src b/sfx2/source/appl/app.src
index d1dcccd..ad1c733 100644
--- a/sfx2/source/appl/app.src
+++ b/sfx2/source/appl/app.src
@@ -536,7 +536,7 @@ ModalDialog DLG_HELP_LICENSING
 String STR_LICENSING_INFORMATION_4
 {
 Text [ en-US ] =
-Copyright © 2000, 2012 LibreOffice contributors and/or their 
affiliates. All rights\n
+Copyright © 2000, 2013 LibreOffice contributors and/or their 
affiliates. All rights\n
 reserved. ;
 };
 String STR_LICENSING_INFORMATION_5
diff --git a/solenv/inc/minor.mk b/solenv/inc/minor.mk
index 81ff10d..11af27c 100644
--- a/solenv/inc/minor.mk
+++ b/solenv/inc/minor.mk
@@ -8,4 +8,4 @@ VERSIONMAJOR=4
 VERSIONMINOR=0
 VERSIONMICRO=0
 
-COPYRIGHTYEARRANGE=2000-2012
+COPYRIGHTYEARRANGE=2000-2013
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: sc/source

2013-01-01 Thread Libreoffice Gerrit user
 sc/source/core/tool/autoform.cxx |   11 +++
 1 file changed, 3 insertions(+), 8 deletions(-)

New commits:
commit 2e1abe1c59b1121ffb5d46afe82ce985cb70c4db
Author: Julien Nabet serval2...@yahoo.fr
Date:   Tue Jan 1 15:17:21 2013 +0100

Fix some 'bRet' is reassigned a value before the old one has been used

Change-Id: I815b943871f11ae2bbe2d5ecfa6e096fb7bb463f

diff --git a/sc/source/core/tool/autoform.cxx b/sc/source/core/tool/autoform.cxx
index a11e5f6..54ee367 100644
--- a/sc/source/core/tool/autoform.cxx
+++ b/sc/source/core/tool/autoform.cxx
@@ -746,10 +746,9 @@ void ScAutoFormatData::GetFromItemSet( sal_uInt16 nIndex, 
const SfxItemSet rIte
 
 bool ScAutoFormatData::Load( SvStream rStream, const ScAfVersions rVersions )
 {
-sal_BoolbRet = true;
 sal_uInt16  nVer = 0;
 rStream  nVer;
-bRet = 0 == rStream.GetError();
+bool bRet = 0 == rStream.GetError();
 if( bRet  (nVer == AUTOFORMAT_DATA_ID_X ||
 (AUTOFORMAT_DATA_ID_504 = nVer  nVer = AUTOFORMAT_DATA_ID)) )
 {
@@ -1016,8 +1015,6 @@ ScAutoFormat::iterator ScAutoFormat::end()
 
 bool ScAutoFormat::Load()
 {
-bool bRet = true;
-
 INetURLObject aURL;
 SvtPathOptions aPathOpt;
 aURL.SetSmartURL( aPathOpt.GetUserConfigPath() );
@@ -1026,7 +1023,7 @@ bool ScAutoFormat::Load()
 
 SfxMedium aMedium( aURL.GetMainURL(INetURLObject::NO_DECODE), STREAM_READ 
);
 SvStream* pStream = aMedium.GetInStream();
-bRet = (pStream  pStream-GetError() == 0);
+bool bRet = (pStream  pStream-GetError() == 0);
 if (bRet)
 {
 SvStream rStream = *pStream;
@@ -1079,8 +1076,6 @@ bool ScAutoFormat::Load()
 
 bool ScAutoFormat::Save()
 {
-bool bRet = true;
-
 INetURLObject aURL;
 SvtPathOptions aPathOpt;
 aURL.SetSmartURL( aPathOpt.GetUserConfigPath() );
@@ -1089,7 +1084,7 @@ bool ScAutoFormat::Save()
 
 SfxMedium aMedium( aURL.GetMainURL(INetURLObject::NO_DECODE), STREAM_WRITE 
);
 SvStream* pStream = aMedium.GetOutStream();
-bRet = (pStream  pStream-GetError() == 0);
+bool bRet = (pStream  pStream-GetError() == 0);
 if (bRet)
 {
 const sal_uInt16 fileVersion = SOFFICE_FILEFORMAT_50;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: sc/source

2013-01-01 Thread Libreoffice Gerrit user
 sc/source/ui/docshell/docfunc.cxx |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit f843850ee9994653673ef5591aae875d7fb22fed
Author: Julien Nabet serval2...@yahoo.fr
Date:   Tue Jan 1 16:23:16 2013 +0100

fdo#47466 FORMATTING: Autoformat empty rows causes app to crash

Thank you John LeMoyne Castle for your support

http://nabble.documentfoundation.org/Wrong-indentation-which-leads-to-segfault-in-sc-source-ui-docshell-docfunc-cxx-td4026726.html
However, the weird thing is I reproduced the crash with master sources but 
didn't with 4.0 branch nor with 3.5.4.2 Debian packages

Change-Id: Ia5366f479a1066106551b77b5a6315fb78e1bf7d

diff --git a/sc/source/ui/docshell/docfunc.cxx 
b/sc/source/ui/docshell/docfunc.cxx
index abcd66d..bbd6c96 100644
--- a/sc/source/ui/docshell/docfunc.cxx
+++ b/sc/source/ui/docshell/docfunc.cxx
@@ -3739,10 +3739,12 @@ bool ScDocFunc::AutoFormat( const ScRange rRange, 
const ScMarkData* pTabMark,
 
 ScMarkData::iterator itr = aMark.begin(), itrEnd = aMark.end();
 for (; itr != itrEnd  *itr  nTabCount; ++itr)
+{
 SetWidthOrHeight( sal_True, 1,nCols, *itr, SC_SIZE_VISOPT, 
STD_EXTRA_WIDTH, false, sal_True);
 SetWidthOrHeight( false,1,nRows, *itr, SC_SIZE_VISOPT, 0, 
false, false);
 rDocShell.PostPaint( 0,0,*itr, MAXCOL,MAXROW,*itr,
 PAINT_GRID | PAINT_LEFT | PAINT_TOP );
+}
 }
 else
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: Wrong indentation which leads to segfault in sc/source/ui/docshell/docfunc.cxx

2013-01-01 Thread julien2412
Thank you John for your investigation about all this.

In fact, I was leafing through some cppcheck reports.
To simplify,  I pushed some slight fixes  in
sc/source/core/tool/autoform.cxx (see
http://cgit.freedesktop.org/libreoffice/core/commit/?id=2e1abe1c59b1121ffb5d46afe82ce985cb70c4db).
So now we've got this:
[sc/source/core/tool/autoform.cxx:1102] -
[sc/source/core/tool/autoform.cxx:1105]: (performance) Variable 'bRet' is
reassigned a value before the old one has been used.

   1102 bRet = (rStream.GetError() == 0);
   1103
//---
   1104 rStream  (sal_uInt16)(maData.size() - 1);
   1105 bRet = (rStream.GetError() == 0);
   1106 MapType::iterator it = maData.begin(), itEnd = maData.end();
   1107 for (++it; bRet  it != itEnd; ++it) // Skip the first
item.
   1108 bRet = it-second-Save(rStream, fileVersion);

So bRet value of 1102 isn't taken into account since there's another
assignation line 1105.
But just after, I noticed that at line 1107 it variable was increased
without checking it != itEnd
So I checked bugs concerning autoformats and ran into fdo#47466.
I gave a try to it by adding an if (it != itEnd) before line 1107 and
finally had the bt of my first message.

So I looked at the git history as you indicated and found about the missing
braces was due to a slight mistake during a cleaning.

I pushed a fix (see
http://cgit.freedesktop.org/libreoffice/core/commit/?id=f843850ee9994653673ef5591aae875d7fb22fed).

Now there are still the cppcheck report + the potential lacking of iterator
test before loop

Julien



--
View this message in context: 
http://nabble.documentfoundation.org/Wrong-indentation-which-leads-to-segfault-in-sc-source-ui-docshell-docfunc-cxx-tp4026726p4026790.html
Sent from the Dev mailing list archive at Nabble.com.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] .: cui/uiconfig

2013-01-01 Thread Libreoffice Gerrit user
 cui/uiconfig/ui/positionpage.ui |  300 ++--
 1 file changed, 165 insertions(+), 135 deletions(-)

New commits:
commit e350815692a9f660f2dabddc0f76262697b64a1b
Author: Jack Leigh leigh...@gmx.se
Date:   Sun Dec 23 00:06:57 2012 +

fdo#58651 improve layout/spacing of positionpage.ui

Change-Id: I17dde604a94989e0f3fb0c8a6c0e3e6e1f362574
Reviewed-on: https://gerrit.libreoffice.org/1472
Reviewed-by: Caolán McNamara caol...@redhat.com
Tested-by: Caolán McNamara caol...@redhat.com

diff --git a/cui/uiconfig/ui/positionpage.ui b/cui/uiconfig/ui/positionpage.ui
index f143e4b..0db131e 100644
--- a/cui/uiconfig/ui/positionpage.ui
+++ b/cui/uiconfig/ui/positionpage.ui
@@ -40,6 +40,10 @@
   object class=GtkBox id=PositionPage
 property name=visibleTrue/property
 property name=can_focusFalse/property
+property name=margin_left6/property
+property name=margin_right6/property
+property name=margin_top6/property
+property name=margin_bottom6/property
 property name=orientationvertical/property
 property name=spacing6/property
 child
@@ -55,155 +59,179 @@
 property name=top_padding6/property
 property name=left_padding12/property
 child
-  object class=GtkGrid id=grid4
+  object class=GtkBox id=box2
 property name=visibleTrue/property
 property name=can_focusFalse/property
-property name=column_spacing6/property
 child
-  object class=GtkRadioButton id=superscript
-property name=label 
translatable=yesSuperscript/property
-property name=use_action_appearanceFalse/property
-property name=visibleTrue/property
-property name=can_focusTrue/property
-property name=receives_defaultFalse/property
-property name=use_action_appearanceFalse/property
-property name=xalign0/property
-property name=draw_indicatorTrue/property
-property name=groupnormal/property
-  /object
-  packing
-property name=left_attach0/property
-property name=top_attach0/property
-property name=width1/property
-property name=height1/property
-  /packing
-/child
-child
-  object class=GtkRadioButton id=normal
-property name=label translatable=yesNormal/property
-property name=use_action_appearanceFalse/property
-property name=visibleTrue/property
-property name=can_focusTrue/property
-property name=receives_defaultFalse/property
-property name=use_action_appearanceFalse/property
-property name=xalign0/property
-property name=draw_indicatorTrue/property
-property name=groupsubscript/property
-  /object
-  packing
-property name=left_attach0/property
-property name=top_attach1/property
-property name=width1/property
-property name=height1/property
-  /packing
-/child
-child
-  object class=GtkRadioButton id=subscript
-property name=label 
translatable=yesSubscript/property
-property name=use_action_appearanceFalse/property
-property name=visibleTrue/property
-property name=can_focusTrue/property
-property name=receives_defaultFalse/property
-property name=use_action_appearanceFalse/property
-property name=xalign0/property
-property name=draw_indicatorTrue/property
-property name=groupsuperscript/property
-  /object
-  packing
-property name=left_attach0/property
-property name=top_attach2/property
-property name=width1/property
-property name=height1/property
-  /packing
-/child
-child
-  object class=GtkLabel id=raiselower
+  object class=GtkBox id=box3
 property name=visibleTrue/property
 property name=can_focusFalse/property
-property name=xalign0/property
-property name=label translatable=yesRaise/lower 
by/property
+property name=orientationvertical/property
+property name=spacing6/property
+property 

[Libreoffice-commits] .: Branch 'libreoffice-4-0' - cui/uiconfig

2013-01-01 Thread Libreoffice Gerrit user
 cui/uiconfig/ui/positionpage.ui |  300 ++--
 1 file changed, 165 insertions(+), 135 deletions(-)

New commits:
commit 5ee54bcb9c7713c7233b0bb9f7671c6e61047585
Author: Jack Leigh leigh...@gmx.se
Date:   Sun Dec 23 00:06:57 2012 +

fdo#58651 improve layout/spacing of positionpage.ui

Change-Id: I17dde604a94989e0f3fb0c8a6c0e3e6e1f362574
Reviewed-on: https://gerrit.libreoffice.org/1472
Reviewed-by: Caolán McNamara caol...@redhat.com
Tested-by: Caolán McNamara caol...@redhat.com
(cherry picked from commit e350815692a9f660f2dabddc0f76262697b64a1b)

Signed-off-by: Caolán McNamara caol...@redhat.com

diff --git a/cui/uiconfig/ui/positionpage.ui b/cui/uiconfig/ui/positionpage.ui
index f143e4b..0db131e 100644
--- a/cui/uiconfig/ui/positionpage.ui
+++ b/cui/uiconfig/ui/positionpage.ui
@@ -40,6 +40,10 @@
   object class=GtkBox id=PositionPage
 property name=visibleTrue/property
 property name=can_focusFalse/property
+property name=margin_left6/property
+property name=margin_right6/property
+property name=margin_top6/property
+property name=margin_bottom6/property
 property name=orientationvertical/property
 property name=spacing6/property
 child
@@ -55,155 +59,179 @@
 property name=top_padding6/property
 property name=left_padding12/property
 child
-  object class=GtkGrid id=grid4
+  object class=GtkBox id=box2
 property name=visibleTrue/property
 property name=can_focusFalse/property
-property name=column_spacing6/property
 child
-  object class=GtkRadioButton id=superscript
-property name=label 
translatable=yesSuperscript/property
-property name=use_action_appearanceFalse/property
-property name=visibleTrue/property
-property name=can_focusTrue/property
-property name=receives_defaultFalse/property
-property name=use_action_appearanceFalse/property
-property name=xalign0/property
-property name=draw_indicatorTrue/property
-property name=groupnormal/property
-  /object
-  packing
-property name=left_attach0/property
-property name=top_attach0/property
-property name=width1/property
-property name=height1/property
-  /packing
-/child
-child
-  object class=GtkRadioButton id=normal
-property name=label translatable=yesNormal/property
-property name=use_action_appearanceFalse/property
-property name=visibleTrue/property
-property name=can_focusTrue/property
-property name=receives_defaultFalse/property
-property name=use_action_appearanceFalse/property
-property name=xalign0/property
-property name=draw_indicatorTrue/property
-property name=groupsubscript/property
-  /object
-  packing
-property name=left_attach0/property
-property name=top_attach1/property
-property name=width1/property
-property name=height1/property
-  /packing
-/child
-child
-  object class=GtkRadioButton id=subscript
-property name=label 
translatable=yesSubscript/property
-property name=use_action_appearanceFalse/property
-property name=visibleTrue/property
-property name=can_focusTrue/property
-property name=receives_defaultFalse/property
-property name=use_action_appearanceFalse/property
-property name=xalign0/property
-property name=draw_indicatorTrue/property
-property name=groupsuperscript/property
-  /object
-  packing
-property name=left_attach0/property
-property name=top_attach2/property
-property name=width1/property
-property name=height1/property
-  /packing
-/child
-child
-  object class=GtkLabel id=raiselower
+  object class=GtkBox id=box3
 property name=visibleTrue/property
 property name=can_focusFalse/property
-property name=xalign0/property
-property name=label translatable=yesRaise/lower 
by/property
+property 

[PUSHED] fdo#58651 improve layout/spacing of positionpage.ui

2013-01-01 Thread via Code Review
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/1472

Approvals:
  Caolán McNamara: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I17dde604a94989e0f3fb0c8a6c0e3e6e1f362574
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Jack Leigh leigh...@gmx.se
Gerrit-Reviewer: Caolán McNamara caol...@redhat.com

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


[Libreoffice-commits] .: tools/CustomTarget_reversemap.mk

2013-01-01 Thread Libreoffice Gerrit user
 tools/CustomTarget_reversemap.mk |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 0ce5edfbcf8d404afd5f2fbf4376cc94521a541a
Author: Luboš Luňák l.lu...@suse.cz
Date:   Tue Jan 1 17:19:54 2013 +0100

no non-ordering dependencies on whatever/.dir

As that'd be like forcing a remake every single time.

diff --git a/tools/CustomTarget_reversemap.mk b/tools/CustomTarget_reversemap.mk
index f4056cc..9f12a9f 100644
--- a/tools/CustomTarget_reversemap.mk
+++ b/tools/CustomTarget_reversemap.mk
@@ -30,7 +30,7 @@ $(call gb_CustomTarget_get_target,tools/reversemap) : \
 
 $(call gb_CustomTarget_get_workdir,tools/reversemap)/reversemap.hxx : \
$(call gb_Executable_get_runtime_dependencies,bestreversemap) \
-   $(call gb_CustomTarget_get_workdir,tools/reversemap)/.dir
+   | $(call gb_CustomTarget_get_workdir,tools/reversemap)/.dir
$(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),BRM,1)
$(call gb_Helper_execute,bestreversemap  $@)
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PUSHED] Added bulletsandnumbering .ui

2013-01-01 Thread via Code Review
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/1352

Approvals:
  Caolán McNamara: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I224baa5e62454afd998d1cb35144b1594d54d759
Gerrit-PatchSet: 3
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: gokul s gswaminat...@kacst.edu.sa
Gerrit-Reviewer: Caolán McNamara caol...@redhat.com
Gerrit-Reviewer: gokul s gswaminat...@kacst.edu.sa

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


[PATCH] fdo#58919 - Cursor is at Left when Table is converted to RTL...

2013-01-01 Thread gokul s (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1525

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/25/1525/1

fdo#58919 - Cursor is at Left when Table is converted to RTL in Impress

Change-Id: I783af7134eec8045735a939a1322aa4a25c55735
---
M svx/source/sdr/properties/textproperties.cxx
1 file changed, 1 insertion(+), 1 deletion(-)



diff --git a/svx/source/sdr/properties/textproperties.cxx 
b/svx/source/sdr/properties/textproperties.cxx
index e4eb5cd..d71a49b 100644
--- a/svx/source/sdr/properties/textproperties.cxx
+++ b/svx/source/sdr/properties/textproperties.cxx
@@ -372,7 +372,7 @@
 }
 else
 {
-mpItemSet-Put(SvxAdjustItem(SVX_ADJUST_CENTER, EE_PARA_JUST));
+mpItemSet-Put(SvxAdjustItem(SVX_ADJUST_LEFT, EE_PARA_JUST));
 
mpItemSet-Put(SdrTextHorzAdjustItem(SDRTEXTHORZADJUST_CENTER));
 
mpItemSet-Put(SdrTextVertAdjustItem(SDRTEXTVERTADJUST_CENTER));
 }

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I783af7134eec8045735a939a1322aa4a25c55735
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: gokul s gswaminat...@kacst.edu.sa

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


[Libreoffice-commits] .: icu/ExternalProject_icu.mk redland/ExternalProject_raptor.mk redland/ExternalProject_rasqal.mk redland/ExternalProject_redland.mk

2013-01-01 Thread Libreoffice Gerrit user
 icu/ExternalProject_icu.mk |6 +++---
 redland/ExternalProject_raptor.mk  |4 ++--
 redland/ExternalProject_rasqal.mk  |4 ++--
 redland/ExternalProject_redland.mk |4 ++--
 4 files changed, 9 insertions(+), 9 deletions(-)

New commits:
commit cdb86989d118eb9944537be5178275c6d8d7e038
Author: Peter Foley pefol...@verizon.net
Date:   Tue Jan 1 12:54:49 2013 -0500

MAKE not GNUMAKE

Change-Id: I0f57a5a3f9d4f710715a478439e87409378f151e

diff --git a/icu/ExternalProject_icu.mk b/icu/ExternalProject_icu.mk
index 2be2957..b76b333 100644
--- a/icu/ExternalProject_icu.mk
+++ b/icu/ExternalProject_icu.mk
@@ -26,7 +26,7 @@ $(call gb_ExternalProject_get_state_target,icu,build) :
cd $(EXTERNAL_WORKDIR)/source \
 export LIB=$(ILIB) \
 CFLAGS=$(SOLARINC) CPPFLAGS=$(SOLARINC) CXXFLAGS=$(SOLARINC) 
./runConfigureICU Cygwin/MSVC \
-$(GNUMAKE) \
+$(MAKE) \
 touch $@
 else
 $(call gb_ExternalProject_get_state_target,icu,build) :
@@ -39,7 +39,7 @@ $(call gb_ExternalProject_get_state_target,icu,build) :
$(if $(filter YES,$(CROSS_COMPILING)),--build=$(BUILD_PLATFORM) 
--host=$(HOST_PLATFORM) \
--with-cross-build=$(subst $(INPATH),$(INPATH_FOR_BUILD),$(call 
gb_UnpackedTarball_get_dir,icu))/source) \
--enable-layout --disable-static --enable-shared --disable-samples \
-$(GNUMAKE) \
+$(MAKE) \
 for lib in icudata icuin icuuc icule icutu; do \
@touch $$lib; \
done \
@@ -77,7 +77,7 @@ $(call gb_ExternalProject_get_state_target,icu,build) :
--disable-static --enable-shared $(if $(filter 
ANDROID,$(OS)),--with-library-suffix=lo)) \
$(if $(filter YES,$(CROSS_COMPILING)),--build=$(BUILD_PLATFORM) 
--host=$(HOST_PLATFORM)\
--with-cross-build=$(subst 
$(INPATH),$(INPATH_FOR_BUILD),$(call gb_UnpackedTarball_get_dir,icu))/source)\
-$(GNUMAKE) \
+$(MAKE) \
 touch $@
 
 endif
diff --git a/redland/ExternalProject_raptor.mk 
b/redland/ExternalProject_raptor.mk
index 1571821..baf0873 100644
--- a/redland/ExternalProject_raptor.mk
+++ b/redland/ExternalProject_raptor.mk
@@ -29,7 +29,7 @@ $(call gb_ExternalProject_get_state_target,raptor,build):
--with-regex-library=posix --with-decimal=none --with-www=xml \
--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM) 
--target=$(HOST_PLATFORM) \
lt_cv_cc_dll_switch=-shared \
-$(GNUMAKE) \
+$(MAKE) \
 touch $@
 else
 $(call gb_ExternalProject_get_state_target,raptor,build):
@@ -53,7 +53,7 @@ $(call gb_ExternalProject_get_state_target,raptor,build):
$(if $(filter NO,$(SYSTEM_LIBXML)), \
LIBXML2LIB=-lxml2 \
--with-xml2-config=$(OUTDIR)/bin/xml2-config) \
-$(GNUMAKE) \
+$(MAKE) \
 touch $@
 endif
 # vim: set noet sw=4 ts=4:
diff --git a/redland/ExternalProject_rasqal.mk 
b/redland/ExternalProject_rasqal.mk
index 5007046..d52ef3a 100644
--- a/redland/ExternalProject_rasqal.mk
+++ b/redland/ExternalProject_rasqal.mk
@@ -31,7 +31,7 @@ $(call gb_ExternalProject_get_state_target,rasqal,build):
--disable-pcre --with-decimal=none --with-www=xml \
--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM) \
lt_cv_cc_dll_switch=-shared \
-$(GNUMAKE) \
+$(MAKE) \
 touch $@
 else
 $(call gb_ExternalProject_get_state_target,rasqal,build):
@@ -50,7 +50,7 @@ $(call gb_ExternalProject_get_state_target,rasqal,build):
$(if $(filter YES,$(CROSS_COMPILING)),--build=$(BUILD_PLATFORM) 
--host=$(HOST_PLATFORM)) \
$(if $(filter 
MACOSX,$(OS)),--prefix=/@.__OOO)\
$(if $(filter IOS ANDROID,$(OS)),--disable-shared,--disable-static) \
-$(GNUMAKE) \
+$(MAKE) \
 touch $@
 endif
 # vim: set noet sw=4 ts=4:
diff --git a/redland/ExternalProject_redland.mk 
b/redland/ExternalProject_redland.mk
index 1200e84..86fe869 100644
--- a/redland/ExternalProject_redland.mk
+++ b/redland/ExternalProject_redland.mk
@@ -32,7 +32,7 @@ $(call gb_ExternalProject_get_state_target,redland,build):
--with-www=xml --build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM) \
lt_cv_cc_dll_switch=-shared \
 cd librdf \
-$(GNUMAKE) \
+$(MAKE) \
 touch $@
 else
 $(call gb_ExternalProject_get_state_target,redland,build):
@@ -55,7 +55,7 @@ $(call gb_ExternalProject_get_state_target,redland,build):
$(if $(filter IOS ANDROID,$(OS)),--disable-shared,--disable-static) \
$(if $(filter-out ANDROID,$(OS)),--with-threads) \
 cd librdf \
-$(GNUMAKE) \
+$(MAKE) \
 touch $@
 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


[REVIEW for 4.0 and 3.6] fdo#47466 FORMATTING: Autoformat empty rows causes app to crash

2013-01-01 Thread julien2412
Hello,

I don't reproduce the problem with 4.0 sources (I don't know why) but I can
reproduce it with 3.6 sources.
Anyway, would it be possible to cherry-pick
f843850ee9994653673ef5591aae875d7fb22fed ?
(it's just some 2 lacking braces)

Julien



--
View this message in context: 
http://nabble.documentfoundation.org/REVIEW-for-4-0-and-3-6-fdo-47466-FORMATTING-Autoformat-empty-rows-causes-app-to-crash-tp4026811.html
Sent from the Dev mailing list archive at Nabble.com.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] added Converter::convertColor with opacity parameter

2013-01-01 Thread via Code Review
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1526

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/26/1526/1

added Converter::convertColor with opacity parameter

Change-Id: I0f3759d8f75f2739b2815c37e8c81bc97e097ec8
---
M sax/inc/sax/tools/converter.hxx
M sax/source/tools/converter.cxx
2 files changed, 27 insertions(+), 2 deletions(-)



diff --git a/sax/inc/sax/tools/converter.hxx b/sax/inc/sax/tools/converter.hxx
index 601ce6c..8b84feb 100644
--- a/sax/inc/sax/tools/converter.hxx
+++ b/sax/inc/sax/tools/converter.hxx
@@ -95,10 +95,15 @@
 static void convertMeasurePx( ::rtl::OUStringBuffer rBuffer,
   sal_Int32 nValue );
 
-/** convert string to color */
+/** convert string to rgb color */
 static bool convertColor( sal_Int32 rColor,
   const ::rtl::OUStringrValue );
 
+/** convert string to argb color */
+static bool convertColor( sal_Int32 rColor,
+  const ::rtl::OUStringrValue,
+  const double alpha);
+
 /** convert color to string */
 static void convertColor( ::rtl::OUStringBuffer rBuffer,
   sal_Int32 nColor );
diff --git a/sax/source/tools/converter.cxx b/sax/source/tools/converter.cxx
index 78dd22b..e7fff9a 100644
--- a/sax/source/tools/converter.cxx
+++ b/sax/source/tools/converter.cxx
@@ -478,7 +478,7 @@
 return 0;
 }
 
-/** convert string to color */
+/** convert string to rgb color */
 bool Converter::convertColor( sal_Int32 rColor, const OUString rValue )
 {
 if( rValue.getLength() != 7 || rValue[0] != '#' )
@@ -495,6 +495,26 @@
 return true;
 }
 
+/** convert string to rgba color */
+bool Converter::convertColor( sal_Int32 rColor, const OUString rValue, const 
double alpha)
+{
+if( rValue.getLength() != 7 || rValue[0] != '#' )
+return false;
+
+rColor = (int) (alpha * 255);
+rColor = 8;
+
+rColor |= lcl_gethex( rValue[1] ) * 16 + lcl_gethex( rValue[2] );
+rColor = 8;
+
+rColor |= ( lcl_gethex( rValue[3] ) * 16 + lcl_gethex( rValue[4] ) );
+rColor = 8;
+
+rColor |= ( lcl_gethex( rValue[5] ) * 16 + lcl_gethex( rValue[6] ) );
+
+return true;
+}
+
 static sal_Char aHexTab[] = 0123456789abcdef;
 
 /** convert color to string */

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I0f3759d8f75f2739b2815c37e8c81bc97e097ec8
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Christina Roßmanith chrrossman...@web.de

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


[PATCH] RTL_CONSTASCII_(U)STRINGPARAM removed in avmedia

2013-01-01 Thread via Code Review
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1528

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/28/1528/1

RTL_CONSTASCII_(U)STRINGPARAM removed in avmedia

Change-Id: Id9ae8600d7f688bd733148663ef501b6ba2bc7d1
---
M avmedia/source/framework/mediacontrol.cxx
M avmedia/source/quicktime/framegrabber.mm
M avmedia/source/quicktime/manager.mm
M avmedia/source/quicktime/player.mm
M avmedia/source/quicktime/window.mm
5 files changed, 14 insertions(+), 14 deletions(-)



diff --git a/avmedia/source/framework/mediacontrol.cxx 
b/avmedia/source/framework/mediacontrol.cxx
index 68b0cdd..ca2c9da 100644
--- a/avmedia/source/framework/mediacontrol.cxx
+++ b/avmedia/source/framework/mediacontrol.cxx
@@ -75,7 +75,7 @@
 meControlStyle( eControlStyle ),
 mbLocked( false )
 {
-const String aTimeText( RTL_CONSTASCII_USTRINGPARAM(  00:00:00/00:00:00  
) );
+const String aTimeText(  00:00:00/00:00:00  );
 
 SetBackground();
 SetPaintTransparent( sal_True );
@@ -415,7 +415,7 @@
 const LocaleDataWrapper rLocaleData = aSysLocale.GetLocaleData();
 
 aTimeString += rLocaleData.getDuration( Time( 0, 0, static_cast 
sal_uInt32 ( floor( fCurTime ) ) ) );
-aTimeString.AppendAscii( RTL_CONSTASCII_STRINGPARAM(  /  ));
+aTimeString.AppendAscii(  /  );
 aTimeString += rLocaleData.getDuration( Time( 0, 0, static_cast 
sal_uInt32 ( floor( maItem.getDuration() ) )) );
 
 if( maTimeEdit.GetText() != aTimeString )
diff --git a/avmedia/source/quicktime/framegrabber.mm 
b/avmedia/source/quicktime/framegrabber.mm
index 97c1066..3e262f1 100644
--- a/avmedia/source/quicktime/framegrabber.mm
+++ b/avmedia/source/quicktime/framegrabber.mm
@@ -118,7 +118,7 @@
 ::rtl::OUString SAL_CALL FrameGrabber::getImplementationName(  )
 throw (uno::RuntimeException)
 {
-return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( 
AVMEDIA_QUICKTIME_FRAMEGRABBER_IMPLEMENTATIONNAME ) );
+return ::rtl::OUString( AVMEDIA_QUICKTIME_FRAMEGRABBER_IMPLEMENTATIONNAME 
);
 }
 
 // 
--
@@ -126,7 +126,7 @@
 sal_Bool SAL_CALL FrameGrabber::supportsService( const ::rtl::OUString 
ServiceName )
 throw (uno::RuntimeException)
 {
-return ServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM ( 
AVMEDIA_QUICKTIME_FRAMEGRABBER_SERVICENAME ) );
+return ( ServiceName == AVMEDIA_QUICKTIME_FRAMEGRABBER_SERVICENAME );
 }
 
 // 
--
@@ -135,7 +135,7 @@
 throw (uno::RuntimeException)
 {
 uno::Sequence ::rtl::OUString  aRet(1);
-aRet[0] = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM ( 
AVMEDIA_QUICKTIME_FRAMEGRABBER_SERVICENAME ) );
+aRet[0] = ::rtl::OUString( AVMEDIA_QUICKTIME_FRAMEGRABBER_SERVICENAME );
 
 return aRet;
 }
diff --git a/avmedia/source/quicktime/manager.mm 
b/avmedia/source/quicktime/manager.mm
index ae82ee4..fb9c41a 100644
--- a/avmedia/source/quicktime/manager.mm
+++ b/avmedia/source/quicktime/manager.mm
@@ -62,7 +62,7 @@
 ::rtl::OUString SAL_CALL Manager::getImplementationName(  )
 throw (uno::RuntimeException)
 {
-return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( 
AVMEDIA_QUICKTIME_MANAGER_IMPLEMENTATIONNAME ) );
+return ::rtl::OUString( AVMEDIA_QUICKTIME_MANAGER_IMPLEMENTATIONNAME );
 }
 
 // 
--
@@ -70,7 +70,7 @@
 sal_Bool SAL_CALL Manager::supportsService( const ::rtl::OUString ServiceName 
)
 throw (uno::RuntimeException)
 {
-return ServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM ( 
AVMEDIA_QUICKTIME_MANAGER_SERVICENAME ) );
+return ( ServiceName == AVMEDIA_QUICKTIME_MANAGER_SERVICENAME );
 }
 
 // 
--
@@ -79,7 +79,7 @@
 throw (uno::RuntimeException)
 {
 uno::Sequence ::rtl::OUString  aRet(1);
-aRet[0] = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( 
AVMEDIA_QUICKTIME_MANAGER_SERVICENAME ) );
+aRet[0] = ::rtl::OUString( AVMEDIA_QUICKTIME_MANAGER_SERVICENAME );
 
 return aRet;
 }
diff --git a/avmedia/source/quicktime/player.mm 
b/avmedia/source/quicktime/player.mm
index fb1f958..4755ad8 100644
--- a/avmedia/source/quicktime/player.mm
+++ b/avmedia/source/quicktime/player.mm
@@ -394,7 +394,7 @@
 ::rtl::OUString SAL_CALL Player::getImplementationName(  )
 throw (uno::RuntimeException)
 {
-return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( 
AVMEDIA_QUICKTIME_PLAYER_IMPLEMENTATIONNAME ) );
+return ::rtl::OUString( AVMEDIA_QUICKTIME_PLAYER_IMPLEMENTATIONNAME );
 }
 
 // 
--
@@ -402,7 +402,7 @@
 sal_Bool SAL_CALL Player::supportsService( const ::rtl::OUString ServiceName )
 throw (uno::RuntimeException)
 {
-return ServiceName.equalsAsciiL( 

[PATCH] added token for handling of svg:linearGradient and svg:radia...

2013-01-01 Thread via Code Review
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1527

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/27/1527/1

added token for handling of svg:linearGradient and svg:radialGradient

Change-Id: I38014a8d9e21359cb943f813484478293360a2e6
---
M xmloff/inc/xmloff/xmltoken.hxx
M xmloff/source/core/xmltoken.cxx
2 files changed, 16 insertions(+), 2 deletions(-)



diff --git a/xmloff/inc/xmloff/xmltoken.hxx b/xmloff/inc/xmloff/xmltoken.hxx
index 6559b45..41acb78 100644
--- a/xmloff/inc/xmloff/xmltoken.hxx
+++ b/xmloff/inc/xmloff/xmltoken.hxx
@@ -878,6 +878,8 @@
 XML_FULL,
 XML_FULL_SCREEN,
 XML_FUNCTION,
+XML_FX,
+XML_FY,
 XML_G,
 XML_GAMMA,
 XML_GAP,
@@ -897,6 +899,7 @@
 XML_GRADIENTSTYLE_RADIAL,
 XML_GRADIENTSTYLE_RECTANGULAR,
 XML_GRADIENTSTYLE_SQUARE,
+XML_GRADIENTTRANSFORM,
 XML_GRAND_TOTAL,
 XML_GRAPHIC,
 XML_GRAY,
@@ -1666,6 +1669,7 @@
 XML_SPLIT_POSITION,
 XML_SPLIT_ROW,
 XML_SPREADSHEET,
+XML_SPREADMETHOD,
 XML_SQL_STATEMENT,
 XML_STACKED,
 XML_STAGGER_EVEN,
@@ -1701,6 +1705,8 @@
 XML_STOCK_UPDOWN_BARS,
 XML_STOCK_WITH_VOLUME,
 XML_STOP,
+XML_STOPCOLOR,
+XML_STOPOPACITY,
 XML_STRETCH,
 XML_STRETCH_FROM_BOTTOM,
 XML_STRETCH_FROM_LEFT,
@@ -1734,6 +1740,7 @@
 XML_SUBTOTAL_RULES,
 XML_SUFFIX,
 XML_SUM,
+XML_SVGLINEARGRADIENT,
 XML_SWISS,
 XML_SYMBOL,
 XML_SYMBOL_HEIGHT,
diff --git a/xmloff/source/core/xmltoken.cxx b/xmloff/source/core/xmltoken.cxx
index 975349d..d7ebd2f 100644
--- a/xmloff/source/core/xmltoken.cxx
+++ b/xmloff/source/core/xmltoken.cxx
@@ -882,6 +882,8 @@
 TOKEN( full,XML_FULL ),
 TOKEN( full-screen, XML_FULL_SCREEN ),
 TOKEN( function,XML_FUNCTION ),
+TOKEN( fx,  XML_FX ),
+TOKEN( fy,  XML_FY ),
 TOKEN( g,   XML_G ),
 TOKEN( gamma,   XML_GAMMA ),
 TOKEN( gap, XML_GAP ),
@@ -901,6 +903,7 @@
 TOKEN( radial,  XML_GRADIENTSTYLE_RADIAL ),
 TOKEN( rectangular, 
XML_GRADIENTSTYLE_RECTANGULAR ),
 TOKEN( square,  XML_GRADIENTSTYLE_SQUARE ),
+TOKEN( gradientTransform,   XML_GRADIENTTRANSFORM ),
 TOKEN( grand-total, XML_GRAND_TOTAL ),
 TOKEN( graphic, XML_GRAPHIC ),
 TOKEN( gray,XML_GRAY ),
@@ -1671,6 +1674,7 @@
 TOKEN( split-position,  XML_SPLIT_POSITION ),
 TOKEN( split-row,   XML_SPLIT_ROW ),
 TOKEN( spreadsheet, XML_SPREADSHEET ),
+TOKEN( spreadMethod,XML_SPREADMETHOD ),
 TOKEN( sql-statement,   XML_SQL_STATEMENT ),
 TOKEN( stacked, XML_STACKED ),
 TOKEN( stagger-even,XML_STAGGER_EVEN ),
@@ -1706,6 +1710,8 @@
 TOKEN( stock-updown-bars,   XML_STOCK_UPDOWN_BARS ),
 TOKEN( stock-with-volume,   XML_STOCK_WITH_VOLUME ),
 TOKEN( stop,XML_STOP ),
+TOKEN( stop-color,  XML_STOPCOLOR ),
+TOKEN( stop-opacity,XML_STOPOPACITY ),
 TOKEN( stretch, XML_STRETCH ),
 TOKEN( stretch-from-bottom, XML_STRETCH_FROM_BOTTOM ),
 TOKEN( stretch-from-left,   XML_STRETCH_FROM_LEFT ),
@@ -1739,6 +1745,7 @@
 TOKEN( subtotal-rules,  XML_SUBTOTAL_RULES ),
 TOKEN( suffix,  XML_SUFFIX ),
 TOKEN( sum, XML_SUM ),
+TOKEN( linearGradient,  XML_SVGLINEARGRADIENT ),
 TOKEN( swiss,   XML_SWISS ),
 TOKEN( symbol,  XML_SYMBOL ),
 TOKEN( symbol-height,   XML_SYMBOL_HEIGHT ),
@@ -3194,8 +3201,8 @@
 
 XMLTokenEntry* pToken = aTokenList[(sal_uInt16)eToken];
 if (!pToken-pOUString)
-pToken-pOUString = new OUString( pToken-pChar, pToken-nLength,
-RTL_TEXTENCODING_ASCII_US );
+   pToken-pOUString = new OUString( pToken-pChar, pToken-nLength,
+ RTL_TEXTENCODING_ASCII_US );
 return *pToken-pOUString;
 }
 

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

added Converter::convertColor with opacity parameter

2013-01-01 Thread via Code Review
Christina Roßmanith has abandoned this change.

Change subject: added Converter::convertColor with opacity parameter
..


Patch Set 1: Abandoned

pushed accidentally

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

Gerrit-MessageType: abandon
Gerrit-Change-Id: I0f3759d8f75f2739b2815c37e8c81bc97e097ec8
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Christina Roßmanith chrrossman...@web.de

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


added token for handling of svg:linearGradient and svg:radia...

2013-01-01 Thread via Code Review
Christina Roßmanith has abandoned this change.

Change subject: added token for handling of svg:linearGradient and 
svg:radialGradient
..


Patch Set 1: Abandoned

pushed accidentally

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

Gerrit-MessageType: abandon
Gerrit-Change-Id: I38014a8d9e21359cb943f813484478293360a2e6
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Christina Roßmanith chrrossman...@web.de

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


added token for handling of svg:linearGradient and svg:radia...

2013-01-01 Thread Norbert Thiebaud (via Code Review)
Norbert Thiebaud has restored this change.

Change subject: added token for handling of svg:linearGradient and 
svg:radialGradient
..


Patch Set 1: Restored

need it for a while: do not submit

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

Gerrit-MessageType: restore
Gerrit-Change-Id: I38014a8d9e21359cb943f813484478293360a2e6
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Christina Roßmanith chrrossman...@web.de

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


added Converter::convertColor with opacity parameter

2013-01-01 Thread Norbert Thiebaud (via Code Review)
Norbert Thiebaud has restored this change.

Change subject: added Converter::convertColor with opacity parameter
..


Patch Set 1: Restored

need it for a while... do not submit

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

Gerrit-MessageType: restore
Gerrit-Change-Id: I0f3759d8f75f2739b2815c37e8c81bc97e097ec8
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Christina Roßmanith chrrossman...@web.de

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


[Libreoffice-commits] .: avmedia/source

2013-01-01 Thread Libreoffice Gerrit user
 avmedia/source/framework/mediacontrol.cxx |4 ++--
 avmedia/source/quicktime/framegrabber.mm  |6 +++---
 avmedia/source/quicktime/manager.mm   |6 +++---
 avmedia/source/quicktime/player.mm|6 +++---
 avmedia/source/quicktime/window.mm|6 +++---
 5 files changed, 14 insertions(+), 14 deletions(-)

New commits:
commit ffaf6adba6da2af0bd9ceb7f94b4e4eff055ae20
Author: Chr. Rossmanith chrrossman...@gmx.de
Date:   Tue Jan 1 18:46:33 2013 +0100

RTL_CONSTASCII_(U)STRINGPARAM removed in avmedia

Change-Id: Id9ae8600d7f688bd733148663ef501b6ba2bc7d1
Reviewed-on: https://gerrit.libreoffice.org/1528
Tested-by: Norbert Thiebaud nthieb...@gmail.com
Reviewed-by: Norbert Thiebaud nthieb...@gmail.com

diff --git a/avmedia/source/framework/mediacontrol.cxx 
b/avmedia/source/framework/mediacontrol.cxx
index 68b0cdd..ca2c9da 100644
--- a/avmedia/source/framework/mediacontrol.cxx
+++ b/avmedia/source/framework/mediacontrol.cxx
@@ -75,7 +75,7 @@ MediaControl::MediaControl( Window* pParent, 
MediaControlStyle eControlStyle ) :
 meControlStyle( eControlStyle ),
 mbLocked( false )
 {
-const String aTimeText( RTL_CONSTASCII_USTRINGPARAM(  00:00:00/00:00:00  
) );
+const String aTimeText(  00:00:00/00:00:00  );
 
 SetBackground();
 SetPaintTransparent( sal_True );
@@ -415,7 +415,7 @@ void MediaControl::implUpdateTimeField( double fCurTime )
 const LocaleDataWrapper rLocaleData = aSysLocale.GetLocaleData();
 
 aTimeString += rLocaleData.getDuration( Time( 0, 0, static_cast 
sal_uInt32 ( floor( fCurTime ) ) ) );
-aTimeString.AppendAscii( RTL_CONSTASCII_STRINGPARAM(  /  ));
+aTimeString.AppendAscii(  /  );
 aTimeString += rLocaleData.getDuration( Time( 0, 0, static_cast 
sal_uInt32 ( floor( maItem.getDuration() ) )) );
 
 if( maTimeEdit.GetText() != aTimeString )
diff --git a/avmedia/source/quicktime/framegrabber.mm 
b/avmedia/source/quicktime/framegrabber.mm
index 97c1066..3e262f1 100644
--- a/avmedia/source/quicktime/framegrabber.mm
+++ b/avmedia/source/quicktime/framegrabber.mm
@@ -118,7 +118,7 @@ uno::Reference graphic::XGraphic  SAL_CALL 
FrameGrabber::grabFrame( double fMe
 ::rtl::OUString SAL_CALL FrameGrabber::getImplementationName(  )
 throw (uno::RuntimeException)
 {
-return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( 
AVMEDIA_QUICKTIME_FRAMEGRABBER_IMPLEMENTATIONNAME ) );
+return ::rtl::OUString( AVMEDIA_QUICKTIME_FRAMEGRABBER_IMPLEMENTATIONNAME 
);
 }
 
 // 
--
@@ -126,7 +126,7 @@ uno::Reference graphic::XGraphic  SAL_CALL 
FrameGrabber::grabFrame( double fMe
 sal_Bool SAL_CALL FrameGrabber::supportsService( const ::rtl::OUString 
ServiceName )
 throw (uno::RuntimeException)
 {
-return ServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM ( 
AVMEDIA_QUICKTIME_FRAMEGRABBER_SERVICENAME ) );
+return ( ServiceName == AVMEDIA_QUICKTIME_FRAMEGRABBER_SERVICENAME );
 }
 
 // 
--
@@ -135,7 +135,7 @@ uno::Sequence ::rtl::OUString  SAL_CALL 
FrameGrabber::getSupportedServiceNames
 throw (uno::RuntimeException)
 {
 uno::Sequence ::rtl::OUString  aRet(1);
-aRet[0] = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM ( 
AVMEDIA_QUICKTIME_FRAMEGRABBER_SERVICENAME ) );
+aRet[0] = ::rtl::OUString( AVMEDIA_QUICKTIME_FRAMEGRABBER_SERVICENAME );
 
 return aRet;
 }
diff --git a/avmedia/source/quicktime/manager.mm 
b/avmedia/source/quicktime/manager.mm
index ae82ee4..fb9c41a 100644
--- a/avmedia/source/quicktime/manager.mm
+++ b/avmedia/source/quicktime/manager.mm
@@ -62,7 +62,7 @@ uno::Reference media::XPlayer  SAL_CALL 
Manager::createPlayer( const ::rtl::OU
 ::rtl::OUString SAL_CALL Manager::getImplementationName(  )
 throw (uno::RuntimeException)
 {
-return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( 
AVMEDIA_QUICKTIME_MANAGER_IMPLEMENTATIONNAME ) );
+return ::rtl::OUString( AVMEDIA_QUICKTIME_MANAGER_IMPLEMENTATIONNAME );
 }
 
 // 
--
@@ -70,7 +70,7 @@ uno::Reference media::XPlayer  SAL_CALL 
Manager::createPlayer( const ::rtl::OU
 sal_Bool SAL_CALL Manager::supportsService( const ::rtl::OUString ServiceName 
)
 throw (uno::RuntimeException)
 {
-return ServiceName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM ( 
AVMEDIA_QUICKTIME_MANAGER_SERVICENAME ) );
+return ( ServiceName == AVMEDIA_QUICKTIME_MANAGER_SERVICENAME );
 }
 
 // 
--
@@ -79,7 +79,7 @@ uno::Sequence ::rtl::OUString  SAL_CALL 
Manager::getSupportedServiceNames(  )
 throw (uno::RuntimeException)
 {
 uno::Sequence ::rtl::OUString  aRet(1);
-aRet[0] = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( 
AVMEDIA_QUICKTIME_MANAGER_SERVICENAME ) );
+aRet[0] = ::rtl::OUString( 

added token for handling of svg:linearGradient and svg:radia...

2013-01-01 Thread Norbert Thiebaud (via Code Review)
Norbert Thiebaud has abandoned this change.

Change subject: added token for handling of svg:linearGradient and 
svg:radialGradient
..


Patch Set 2: Abandoned

re-abandon for now

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

Gerrit-MessageType: abandon
Gerrit-Change-Id: I38014a8d9e21359cb943f813484478293360a2e6
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Christina Roßmanith chrrossman...@web.de

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


added Converter::convertColor with opacity parameter

2013-01-01 Thread Norbert Thiebaud (via Code Review)
Norbert Thiebaud has abandoned this change.

Change subject: added Converter::convertColor with opacity parameter
..


Patch Set 2: Abandoned

re-abandon for now

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

Gerrit-MessageType: abandon
Gerrit-Change-Id: I0f3759d8f75f2739b2815c37e8c81bc97e097ec8
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Christina Roßmanith chrrossman...@web.de

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


[PATCH] convert nss to gbuild

2013-01-01 Thread Peter Foley (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1529

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/29/1529/1

convert nss to gbuild

Change-Id: I59edc4c437abccc201823d97f1cbec230d273b05
---
M RepositoryExternal.mk
M config_host.mk.in
M configure.ac
M libxmlsec/xmlsec1-configure.patch
A nss/ExternalPackage_nss.mk
A nss/ExternalProject_nss.mk
A nss/Makefile
A nss/Module_nss.mk
A nss/UnpackedTarball_nss.mk
D nss/makefile.mk
A nss/nss-config.in
D nss/nss-config.patch
R nss/nss.mingw.patch
M nss/prj/build.lst
M nss/prj/d.lst
D nss/prj/dmake
M openldap/ExternalProject_openldap.mk
17 files changed, 395 insertions(+), 463 deletions(-)



diff --git a/RepositoryExternal.mk b/RepositoryExternal.mk
index cb63693..0b3fc76 100644
--- a/RepositoryExternal.mk
+++ b/RepositoryExternal.mk
@@ -2206,9 +2206,7 @@
 
 ifeq (,$(filter DESKTOP,$(BUILD_TYPE)))
 
-define gb_LinkTarget__use_nss3
-
-endef
+gb_LinkTarget__use_nss3:=
 
 else
 
@@ -2245,10 +2243,11 @@
 ))
 
 define gb_LinkTarget__use_nss3
+$(call gb_LinkTarget_use_package,$(1),nss)
 $(call gb_LinkTarget_set_include,$(1),\
$$(INCLUDE) \
-   -I$(OUTDIR)/inc/mozilla/nspr \
-   -I$(OUTDIR)/inc/mozilla/nss \
+   -I$(call gb_UnpackedTarball_get_dir,nss)/mozilla/dist/public/nss \
+   -I$(call gb_UnpackedTarball_get_dir,nss)/mozilla/dist/out/include \
 )
 
 $(call gb_LinkTarget_use_libraries,$(1),\
@@ -2260,6 +2259,7 @@
 endef
 
 define gb_LinkTarget__use_plc4
+$(call gb_LinkTarget_use_package,$(1),nss)
 $(call gb_LinkTarget_use_libraries,$(1),\
 plc4 \
 )
diff --git a/config_host.mk.in b/config_host.mk.in
index 08f6a85..ffb9514 100644
--- a/config_host.mk.in
+++ b/config_host.mk.in
@@ -405,6 +405,9 @@
 export NEON_VERSION=@NEON_VERSION@
 export NM=@NM@
 export nodep=@nodep@
+export NSS_MAJOR=@NSS_MAJOR@
+export NSS_MINOR=@NSS_MINOR@
+export NSS_PATCH=@NSS_PATCH@
 export NSS_CFLAGS=$(gb_SPACE)@NSS_CFLAGS@
 export NSS_LIBS=$(gb_SPACE)@NSS_LIBS@
 export NSSBUILDTOOLS=@NSSBUILDTOOLS@
diff --git a/configure.ac b/configure.ac
index 68723f4..d42e807 100644
--- a/configure.ac
+++ b/configure.ac
@@ -8255,6 +8255,9 @@
 libo_MINGW_CHECK_DLL([SSL3], [ssl3])
 else
 SYSTEM_NSS=NO
+   NSS_MAJOR=3
+   NSS_MINOR=13
+   NSS_PATCH=5
 BUILD_TYPE=$BUILD_TYPE NSS
 AC_MSG_RESULT([internal])
 if test $build_os = cygwin; then
@@ -8275,6 +8278,9 @@
 fi
 fi # system nss
 AC_SUBST(SYSTEM_NSS)
+AC_SUBST(NSS_MAJOR)
+AC_SUBST(NSS_MINOR)
+AC_SUBST(NSS_PATCH)
 AC_SUBST(NSS_CFLAGS)
 AC_SUBST(NSS_LIBS)
 AC_SUBST(NSSBUILDTOOLS)
diff --git a/libxmlsec/xmlsec1-configure.patch 
b/libxmlsec/xmlsec1-configure.patch
index ead9050..2db0426 100644
--- a/libxmlsec/xmlsec1-configure.patch
+++ b/libxmlsec/xmlsec1-configure.patch
@@ -97,10 +97,29 @@
 -ac_nss_lib_dir=/usr/lib /usr/lib64 /usr/local/lib 
/usr/lib/$ac_mozilla_name /usr/local/lib/$ac_mozilla_name
 -ac_nss_inc_dir=/usr/include /usr/include/mozilla /usr/local/include 
/usr/local/include/mozilla /usr/include/$ac_mozilla_name 
/usr/local/include/$ac_mozilla_name
 +ac_nss_lib_dir=${SOLARVERSION}/${INPATH}/lib${UPDMINOREXT}
-+ac_nss_inc_dir=${SOLARVERSION}/${INPATH}/inc${UPDMINOREXT}/mozilla
++ac_nss_inc_dir=${WORKDIR}/UnpackedTarball/nss/mozilla/dist/out/include 
${WORKDIR}/UnpackedTarball/nss/mozilla/dist/public
  
  AC_MSG_CHECKING(for nspr libraries = $NSPR_MIN_VERSION)
  NSPR_INCLUDES_FOUND=no
+@@ -637,15 +660,15 @@
+   NSPR_PRINIT_H=$with_nspr/include/prinit.h
+ else
+   for dir in $ac_nss_inc_dir ; do
+-  if test -f $dir/nspr/prinit.h ; then
++  if test -f $dir/prinit.h ; then
+   dnl do not add -I/usr/include because compiler does it anyway
+   if test z$dir = z/usr/include ; then
+   NSPR_CFLAGS=
+   else
+-  NSPR_CFLAGS=-I$dir/nspr
++  NSPR_CFLAGS=-I$dir
+   fi
+   NSPR_INCLUDES_FOUND=yes
+-  NSPR_PRINIT_H=$dir/nspr/prinit.h
++  NSPR_PRINIT_H=$dir/prinit.h
+   break
+   fi
+   done
 @@ -648,7 +671,7 @@
done

diff --git a/nss/ExternalPackage_nss.mk b/nss/ExternalPackage_nss.mk
new file mode 100644
index 000..ae28d98
--- /dev/null
+++ b/nss/ExternalPackage_nss.mk
@@ -0,0 +1,78 @@
+# -*- 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_ExternalPackage_ExternalPackage,nss,nss))
+
+$(eval $(call gb_ExternalPackage_use_external_project,nss,nss))
+
+$(eval $(call gb_ExternalPackage_add_files,nss,bin,\
+   config/nspr-config \
+   config/nss-config \
+))
+
+ifeq ($(OS),WNT)
+ifeq ($(COM),MSC)
+$(eval $(call 

[PUSHED] RTL_CONSTASCII_(U)STRINGPARAM removed in avmedia

2013-01-01 Thread Norbert Thiebaud (via Code Review)
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/1528

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


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

Gerrit-MessageType: merged
Gerrit-Change-Id: Id9ae8600d7f688bd733148663ef501b6ba2bc7d1
Gerrit-PatchSet: 3
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Christina Roßmanith chrrossman...@web.de
Gerrit-Reviewer: Norbert Thiebaud nthieb...@gmail.com

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


Re: Wrong indentation which leads to segfault in sc/source/ui/docshell/docfunc.cxx

2013-01-01 Thread julien2412
BTW, it's not cppcheck which had safe iterator since it just allow to scan
sources.
I rather think it's --enable-dbgutil in autogen.lastrun which triggered
safe iterator.

Julien



--
View this message in context: 
http://nabble.documentfoundation.org/Wrong-indentation-which-leads-to-segfault-in-sc-source-ui-docshell-docfunc-cxx-tp4026726p4026829.html
Sent from the Dev mailing list archive at Nabble.com.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] .: desktop/source

2013-01-01 Thread Libreoffice Gerrit user
 desktop/source/deployment/inc/dp_misc.h   |1 
 desktop/source/deployment/manager/dp_extensionmanager.cxx |2 
 desktop/source/pkgchk/unopkg/unopkg_app.cxx   |   95 ++
 desktop/source/pkgchk/unopkg/unopkg_cmdenv.cxx|   27 +--
 desktop/source/pkgchk/unopkg/unopkg_misc.cxx  |   91 ++---
 desktop/source/splash/splash.cxx  |   32 +---
 6 files changed, 107 insertions(+), 141 deletions(-)

New commits:
commit f9f9fa1ef72c78accfbc25b33748a1046aa01843
Author: Chr. Rossmanith chrrossman...@gmx.de
Date:   Tue Jan 1 20:47:51 2013 +0100

RTL_CONSTASCII_(U)STRINGPARAM removed in desktop

Change-Id: I23bd979aa39a8062f65f66e701cfd8ca3a18da8c

diff --git a/desktop/source/deployment/inc/dp_misc.h 
b/desktop/source/deployment/inc/dp_misc.h
index 39407a9..70f5cbb 100644
--- a/desktop/source/deployment/inc/dp_misc.h
+++ b/desktop/source/deployment/inc/dp_misc.h
@@ -32,7 +32,6 @@
 #include com/sun/star/awt/XWindow.hpp
 #include dp_misc_api.hxx
 
-#define OUSTR(x) ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM(x) )
 #define ARLEN(x) (sizeof (x) / sizeof *(x))
 
 namespace dp_misc {
diff --git a/desktop/source/deployment/manager/dp_extensionmanager.cxx 
b/desktop/source/deployment/manager/dp_extensionmanager.cxx
index 90dc8d8..9add425 100644
--- a/desktop/source/deployment/manager/dp_extensionmanager.cxx
+++ b/desktop/source/deployment/manager/dp_extensionmanager.cxx
@@ -1308,7 +1308,7 @@ sal_Bool ExtensionManager::synchronize(
 sSynchronizingShared.SearchAndReplaceAllAscii( %NAME, 
OUString(shared));
 dp_misc::ProgressLevel progressShared(xCmdEnv, sSynchronizingShared);
 sal_Bool bModified = getSharedRepository()-synchronize(xAbortChannel, 
xCmdEnv);
-progressShared.update(OUSTR(\n\n));
+progressShared.update(\n\n);
 
 String sSynchronizingBundled(StrSyncRepository::get());
 sSynchronizingBundled.SearchAndReplaceAllAscii( %NAME, 
OUString(bundled));
diff --git a/desktop/source/pkgchk/unopkg/unopkg_app.cxx 
b/desktop/source/pkgchk/unopkg/unopkg_app.cxx
index b2b09a6..6747419 100644
--- a/desktop/source/pkgchk/unopkg/unopkg_app.cxx
+++ b/desktop/source/pkgchk/unopkg/unopkg_app.cxx
@@ -196,23 +196,23 @@ extern C DESKTOP_DLLPUBLIC int unopkg_main()
 ::std::vectorOUString cmdPackages;
 
 OptionInfo const * info_shared = getOptionInfo(
-s_option_infos, OUSTR(shared) );
+s_option_infos, shared );
 OptionInfo const * info_force = getOptionInfo(
-s_option_infos, OUSTR(force) );
+s_option_infos, force );
 OptionInfo const * info_verbose = getOptionInfo(
-s_option_infos, OUSTR(verbose) );
+s_option_infos, verbose );
 OptionInfo const * info_log = getOptionInfo(
-s_option_infos, OUSTR(log-file) );
+s_option_infos, log-file );
 OptionInfo const * info_context = getOptionInfo(
-s_option_infos, OUSTR(deployment-context) );
+s_option_infos, deployment-context );
 OptionInfo const * info_help = getOptionInfo(
-s_option_infos, OUSTR(help) );
+s_option_infos, help );
 OptionInfo const * info_version = getOptionInfo(
-s_option_infos, OUSTR(version) );
+s_option_infos, version );
 OptionInfo const * info_bundled = getOptionInfo(
-s_option_infos, OUSTR(bundled) );
+s_option_infos, bundled );
 OptionInfo const * info_suppressLicense = getOptionInfo(
-s_option_infos, OUSTR(suppress-license) );
+s_option_infos, suppress-license );
 
 
 ReferenceXComponentContext xComponentContext;
@@ -267,12 +267,12 @@ extern C DESKTOP_DLLPUBLIC int unopkg_main()
 {
 // is option:
 dp_misc::writeConsoleError(
- OUSTR(\nERROR: unexpected option ) +
+ \nERROR: unexpected option  +
  cmdArg +
- OUSTR(!\n) +
- OUSTR(   Use  APP_NAME  ) +
+ !\n +
+Use  + APP_NAME +   +
  toString(info_help) +
- OUSTR( to print all options.\n));
+  to print all options.\n);
 return 1;
 }
 else
@@ -291,11 +291,11 @@ extern C DESKTOP_DLLPUBLIC int unopkg_main()
 if (repository.isEmpty())
 {
 if (option_shared)
-repository = OUSTR(shared);
+repository = shared;
 else if (option_bundled)
-repository = OUSTR(bundled);
+repository = bundled;
 else
-repository = OUSTR(user);
+repository = user;
 }
 else
 {
@@ -304,31 

[PATCH] The problem is that the process handle is freed regardless o...

2013-01-01 Thread Christopher Copits (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1530

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/30/1530/1

The problem is that the process handle is freed regardless of whether 
osl_executeProcess was successful or not. Therefore, a segmentation fault would 
result, as a random memory address would be freed. This patch checks whether 
osl_executeProcess was successful. If it was, then it frees the handle; if it 
wasn't successful, the memory is not freed.

Change-Id: Ic3af07be06e7af7730a3bcb1680c659a88b66af3
---
M basic/source/runtime/methods.cxx
1 file changed, 5 insertions(+), 1 deletion(-)



diff --git a/basic/source/runtime/methods.cxx b/basic/source/runtime/methods.cxx
index 20fee90..1de512b 100644
--- a/basic/source/runtime/methods.cxx
+++ b/basic/source/runtime/methods.cxx
@@ -3534,7 +3534,11 @@
 NULL, 0,
 pApp ) == osl_Process_E_None;
 
-osl_freeProcessHandle( pApp );
+// 53521 only free process handle on success
+if (bSucc)
+{
+osl_freeProcessHandle( pApp );
+}
 
 for(int j = 0; i  nParamCount; i++)
 {

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ic3af07be06e7af7730a3bcb1680c659a88b66af3
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Christopher Copits chrisc...@live.com

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


[Libreoffice-commits] .: basic/source cui/source editeng/source linguistic/source sc/source sd/source sfx2/source svtools/source svx/source sw/source unotools/source

2013-01-01 Thread Libreoffice Gerrit user
 basic/source/comp/loops.cxx|8 
 basic/source/comp/token.cxx|   10 --
 basic/source/sbx/sbxscan.cxx   |9 -
 cui/source/tabpages/tpbitmap.cxx   |8 
 editeng/source/items/frmitems.cxx  |8 
 linguistic/source/dlistimp.cxx |5 -
 sc/source/core/data/column.cxx |   14 --
 sc/source/core/data/documen5.cxx   |5 -
 sc/source/core/data/pivot2.cxx |5 -
 sc/source/core/data/table4.cxx |5 -
 sc/source/core/tool/chartarr.cxx   |8 
 sc/source/filter/lotus/tool.cxx|4 
 sc/source/ui/docshell/tablink.cxx  |6 --
 sc/source/ui/drawfunc/fuins1.cxx   |4 
 sc/source/ui/drawfunc/fusel.cxx|9 -
 sc/source/ui/view/cellsh4.cxx  |4 
 sc/source/ui/view/dbfunc2.cxx  |8 
 sc/source/ui/view/dbfunc4.cxx  |4 
 sc/source/ui/view/drawvie4.cxx |   15 ---
 sc/source/ui/view/drawview.cxx |9 -
 sc/source/ui/view/tabview3.cxx |8 
 sc/source/ui/view/tabvwsh2.cxx |4 
 sc/source/ui/view/tabvwshb.cxx |4 
 sc/source/ui/view/tabvwshd.cxx |4 
 sd/source/ui/func/fuinsert.cxx |8 
 sd/source/ui/view/drviews4.cxx |   11 ---
 sd/source/ui/view/drviewse.cxx |8 
 sd/source/ui/view/sdview4.cxx  |9 -
 sd/source/ui/view/viewshe2.cxx |8 
 sfx2/source/control/ctrlitem.cxx   |6 --
 sfx2/source/view/viewprn.cxx   |   13 -
 svtools/source/brwbox/brwbox2.cxx  |   15 ---
 svtools/source/dialogs/filedlg2.cxx|4 
 svtools/source/filter/ixpm/xpmread.cxx |8 
 svx/source/svdraw/svdopath.cxx |5 -
 svx/source/xoutdev/_xoutbmp.cxx|8 
 sw/source/core/layout/layact.cxx   |2 --
 sw/source/core/txtnode/fntcache.cxx|   14 --
 sw/source/core/txtnode/fntcap.cxx  |   11 ---
 unotools/source/i18n/textsearch.cxx|   11 ---
 40 files changed, 309 deletions(-)

New commits:
commit 59074c09b838ebaf63f5d3e7578bb473080ec0ee
Author: Luboš Luňák l.lu...@suse.cz
Date:   Tue Jan 1 22:39:15 2013 +0100

remove use of #pragma optimize

All these are years old, guessing from some comments as old
as Windows 9x support. These workarounds do not seem to be needed now.

Change-Id: If67baa5cdefcec33b28696c764b1ed96143b7ccd

diff --git a/basic/source/comp/loops.cxx b/basic/source/comp/loops.cxx
index ac53648..127ec88 100644
--- a/basic/source/comp/loops.cxx
+++ b/basic/source/comp/loops.cxx
@@ -451,10 +451,6 @@ done:
 
 // ON Error/Variable
 
-#ifdef _MSC_VER
-#pragma optimize(,off)
-#endif
-
 void SbiParser::On()
 {
 SbiToken eTok = Peek();
@@ -519,10 +515,6 @@ void SbiParser::On()
 }
 }
 
-#ifdef _MSC_VER
-#pragma optimize(,off)
-#endif
-
 // RESUME [0]|NEXT|label
 
 void SbiParser::Resume()
diff --git a/basic/source/comp/token.cxx b/basic/source/comp/token.cxx
index ca62163..e0dc9fd 100644
--- a/basic/source/comp/token.cxx
+++ b/basic/source/comp/token.cxx
@@ -533,11 +533,6 @@ special:
 return eCurTok;
 }
 
-#ifdef _MSC_VER
-#pragma optimize(,off)
-#endif
-
-
 bool SbiTokenizer::MayBeLabel( bool bNeedsColon )
 {
 if( eCurTok == SYMBOL || m_aTokenLabelInfo.canTokenBeLabel( eCurTok ) )
@@ -552,9 +547,4 @@ bool SbiTokenizer::MayBeLabel( bool bNeedsColon )
 }
 }
 
-#ifdef _MSC_VER
-#pragma optimize(,off)
-#endif
-
-
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/basic/source/sbx/sbxscan.cxx b/basic/source/sbx/sbxscan.cxx
index f9a328e..4f080dd 100644
--- a/basic/source/sbx/sbxscan.cxx
+++ b/basic/source/sbx/sbxscan.cxx
@@ -370,11 +370,6 @@ static void myftoa( double nNum, char * pBuf, short nPrec, 
short nExpWidth,
 // This routine is public because it's also used by the Put-functions
 // in the class SbxImpSTRING.
 
-#ifdef _MSC_VER
-#pragma optimize( , off )
-#pragma warning(disable: 4748) // ... because optimizations are disabled ...
-#endif
-
 void ImpCvtNum( double nNum, short nPrec, ::rtl::OUString rRes, bool 
bCoreString )
 {
 char *q;
@@ -402,10 +397,6 @@ void ImpCvtNum( double nNum, short nPrec, ::rtl::OUString 
rRes, bool bCoreStrin
 rRes = ::rtl::OUString::createFromAscii( cBuf );
 }
 
-#ifdef _MSC_VER
-#pragma optimize( , on )
-#endif
-
 bool ImpConvStringExt( ::rtl::OUString rSrc, SbxDataType eTargetType )
 {
 bool bChanged = false;
diff --git a/cui/source/tabpages/tpbitmap.cxx b/cui/source/tabpages/tpbitmap.cxx
index 1c7b87a..0510868 100644
--- a/cui/source/tabpages/tpbitmap.cxx
+++ b/cui/source/tabpages/tpbitmap.cxx
@@ -679,10 +679,6 @@ IMPL_LINK_NOARG(SvxBitmapTabPage, ClickAddHdl_Impl)
 
 //
 

[Bug 54157] LibreOffice 3.7/4.0 most annoying bugs

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54157

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

   What|Removed |Added

 Depends on||58909

--- Comment #65 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
I add Bug 58909 - Extensions Update fails with error Cannot create folder:
it's a serious problem that LibO lost ability for Extensions update.

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


[Libreoffice-bugs] [Bug 58702] CRASH after General Error message when FILEOPEN particular .RTF

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58702

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

   What|Removed |Added

   Hardware|x86 (IA32)  |All
 Whiteboard|bibisected40|rtf_filter bibisected40
 CC||b...@eikota.de

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


[Libreoffice-bugs] [Bug 45041] Crash opening ods file containing macros

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45041

--- Comment #19 from Peter pe...@niendo.de ---
Hi Julien,

I don't know what I have changed, but this bug never hit me again with 
newer versions of LO.
So I guess we can close this one.


(In reply to comment #18)
 Petr: do you reproduce this with 3.6.4 and a brand new LO profile?
 I had forgotten to ask you these also:
 - did you install any LO specific extensions?
 - do you have any specific fonts? (I mean fonts downloaded or from a
 specific software other than LO)
 - what's your Java version?

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


[Libreoffice-bugs] [Bug 45041] Crash opening ods file containing macros

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45041

Jean-Baptiste Faure jbf.fa...@sud-ouest.org changed:

   What|Removed |Added

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

--- Comment #20 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org ---
According to comment #19, closing as WorksForMe.

Thank you. JBF

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


[Libreoffice-bugs] [Bug 58916] New: Unexpected behavior on slide pane

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58916

  Priority: medium
Bug ID: 58916
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Unexpected behavior on slide pane
  Severity: normal
Classification: Unclassified
OS: Mac OS X (All)
  Reporter: shan...@iimb.ernet.in
  Hardware: x86 (IA32)
Status: UNCONFIRMED
   Version: unspecified
 Component: Presentation
   Product: LibreOffice

I have been a regular user of LO Impress for years, and have had a great
experience overall. However, there is one annoyance, which I shall upgrade to a
nuisance. I have seen the trail regarding this non-bug, and completely
disagree with the explanation given. I quote my background as a biz school prof
who relies heavily on presentations, as my locus standi.

There are three unnecessary buttons for every slide on the slide pane. Has this
been democratically arrived at, or is it developer gold-plating? (Please see
Steve McConnell's insights on this). 

If this is the latter, then it is NOT needed. If I really need to copy a slide,
I have my familiar right click mechanism at hand (literally!). The half-visible
icons get selected at whim when I plan to shuffle slides, and what follows is
hugely unexpected. It copies the slide, follows the cursor as I aim to shuffle,
and dumps the slide when I stop.

To the developer who will comes to the defence of this feature, please bear
in mind that I'm the end user, and you are the developer. One of us is hugely
right. No guesses as to who.

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


[Libreoffice-bugs] [Bug 58916] Unexpected behavior on slide pane

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58916

shan...@iimb.ernet.in changed:

   What|Removed |Added

Version|unspecified |3.6.4.3 release

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


[Libreoffice-bugs] [Bug 58900] EDITING: Graph contents gone once the data rows receive new data

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58900

--- Comment #4 from Marc Burkhardt libreoffice@marc.ngoe.de ---
I think the last known working version was 3.6.3.2

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


[Libreoffice-bugs] [Bug 58856] : Crash on Print Preview

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58856

--- Comment #3 from Naucher nauc...@bbsyd.dk ---
(In reply to comment #1)
 Hi Naucher, thanks for reporting.
 Can you update to 3.6.4.
 http://www.libreoffice.org/download

I'm in doubt how to do this (manual) update, You require!:

As I go to http://www.libreoffice.org/download and perform the download, I also
go to http://www.libreoffice.org/get-help/installation/linux/ where I at first
try to follow the instructions of de-installing the version 3.6.0.1 that's
installed at present.

The instructions for de-installing says:
“In this list, there will be one package named simply “libreoffice3”.
Right-click on that package name and, in the context-sensitive menu that opens,
choose “Mark for Complete Removal”.”

Sad to say there is no “libreoffice3” on my system according to Synaptic – so I
can't de-install that.

Why?
What to do?

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


[Libreoffice-bugs] [Bug 58856] : Crash on Print Preview

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58856

--- Comment #4 from Julien Nabet serval2...@yahoo.fr ---
Naucher: don't bother about the 3, uninstall every LibreOffice installed
packages from Ubuntu.

Then,
- either use ppa LibreOffice to have a repository which contains more recent LO
version
- or install deb from Libreoffice website

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


[Libreoffice-bugs] [Bug 58916] Unexpected behavior on slide pane

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58916

Rob Snelders programm...@ertai.nl changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #1 from Rob Snelders programm...@ertai.nl ---
Thank you for reporting this issue.

please provide links if you refer to any other discussions as that gives the
people the nessisary background to resolve this issue.

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


[Libreoffice-bugs] [Bug 58854] Button not localized

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58854

Rob Snelders programm...@ertai.nl changed:

   What|Removed |Added

  Attachment #72242|0   |1
is obsolete||

--- Comment #1 from Rob Snelders programm...@ertai.nl ---
Created attachment 72359
  -- https://bugs.freedesktop.org/attachment.cgi?id=72359action=edit
The original attachment attached as picture

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


[Libreoffice-bugs] [Bug 58854] Button not localized

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58854

Rob Snelders programm...@ertai.nl changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #2 from Rob Snelders programm...@ertai.nl ---
Thank you for reporting this bug.

I have the same issue with LO-4.0-beta2 on Ubuntu x86_64 in Dutch.

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


[Libreoffice-bugs] [Bug 58845] no shortcut or toolbar button for Extension Manager

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58845

Rob Snelders programm...@ertai.nl changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   Severity|minor   |enhancement
 Ever confirmed|0   |1

--- Comment #1 from Rob Snelders programm...@ertai.nl ---
Thank you for reporting this bug.

I also can't find it. It would be a improvement to have.

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


[Libreoffice-bugs] [Bug 58786] File - Wizards - Document converter does not open at all in Ubuntu/Linux

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58786

--- Comment #1 from Rob Snelders programm...@ertai.nl ---
In 4.0-beta2 in Ubuntu 12.04 x86_64 it works. But that would still be useless
to you. I can't try with older versions as I don't have those installed.
Hopefully somebody else can try.

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


[Libreoffice-bugs] [Bug 58916] Unexpected behavior on slide pane

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58916

--- Comment #2 from shan...@iimb.ernet.in ---
Here's the bug description, as far as I can see it.
https://bugs.freedesktop.org/show_bug.cgi?id=51231

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


[Libreoffice-bugs] [Bug 58917] New: FILEOPEN: I saved a document, and it comes up empty when I try to view it again a few days later.

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58917

  Priority: medium
Bug ID: 58917
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: FILEOPEN: I saved a document, and it comes up empty
when I try to view it again a few days later.
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: r.e.wo...@bitwizard.nl
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 3.5.0 release
 Component: Spreadsheet
   Product: LibreOffice

Created attachment 72360
  -- https://bugs.freedesktop.org/attachment.cgi?id=72360action=edit
Saved dodcument.

Problem description: 

Steps to reproduce:
1. I created a spreadsheet with some sudokus.
2. I printed it to PDF. 
3. I saved the document
4. I open the document a few days later, and all my work is gone. 
   it shows empty. I can't even edit anything. 

Current behavior:
Spreadsheet is gone. 

Expected behavior:
Spreadsheet is visible and editable. 

When I open the document in openoffice 3.2, it 



Operating System: Ubuntu
Version: 3.5.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 58917] FILEOPEN: I saved a document, and it comes up empty when I try to view it again a few days later.

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58917

Roger Wolff r.e.wo...@bitwizard.nl changed:

   What|Removed |Added

   Hardware|Other   |x86-64 (AMD64)
   Severity|normal  |critical
   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 58917] FILEOPEN: I saved a document, and it comes up empty when I try to view it again a few days later.

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58917

--- Comment #1 from Roger Wolff r.e.wo...@bitwizard.nl ---
The bug assistant submitted the bug while I was typing. Sorry. 

In 3.2 the first sheet shows. 

The document has 11 or 12 sheets, the first 9 contain the 9 individual sudokus
that I copied from the newspaper. The tenth contains an empty sudoku template.
The eleventh has the 9 sudokos closer together for printing on just two pages. 

If you want I also have a PDF export of the 11th sheet. 
I also saved it in some exel format, which has the extension xml. That one
also doesn't open correctly.

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


[Libreoffice-bugs] [Bug 58909] Languagetool 2.0: Installation fails with error Cannot create folder

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58909

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

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||LibreOffice@bielefeldundbus
   ||s.de
Summary|Extensionname: Unable to|Languagetool 2.0:
   |install Languagetool 2.0|Installation fails with
   |under LO 4.0.0 Beta 2   |error Cannot create
   ||folder
 Ever confirmed|0   |1

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

@giedi_primus:
Can you please try with a Master installation (Use GUI Installer from
http://extensions.libreoffice.org/extension-center/libreoffice-server-installation-gui)
installed in a public documents folder, in bootstrap.ini use
UserInstallation=$ORIGIN/../Data/settings?

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


[Libreoffice-bugs] [Bug 58845] no shortcut or toolbar button for Extension Manager

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58845

tommy27 ba...@quipo.it changed:

   What|Removed |Added

 CC||ba...@quipo.it

--- Comment #2 from tommy27 ba...@quipo.it ---
I'd like to hear impressions from a developer...  could it be an easy hack?

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


[Libreoffice-bugs] [Bug 47466] FORMATTING: Autoformat empty rows causes app to crash

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=47466

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

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #15 from Julien Nabet serval2...@yahoo.fr ---
As indicated in
http://nabble.documentfoundation.org/Wrong-indentation-which-leads-to-segfault-in-sc-source-ui-docshell-docfunc-cxx-td4026726.html,
I reproduced this with master sources but not with 4.0 sources or 3.5 Debian
packages.
(I've still got to build 3.6 sources and test with it)

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


[Libreoffice-bugs] [Bug 56952] Bogus error message opening a document from read-only location

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56952

--- Comment #6 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org ---
Hi Urmas,
Did you checked if there is a remaining lock-file for your document? This kind
of hidden file has a name like .~lock.filename.odt# where filename.odt is the
locked file. It prevents the user to open the same file twice. It is removed on
closing the file, but maybe not if LO crashed.

I asked on fr QA list to try to reproduce the problem with LO 4.0.0.beta2 under
MS-Windows. I got 3 answers (XP, Vista and W7) and no one succeeded to
reproduce the behavior you described.

Best regards. JBF

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


[Libreoffice-bugs] [Bug 58913] Crash when creating a form with Wizard

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58913

rob...@familiegrosskopf.de changed:

   What|Removed |Added

 CC||rob...@familiegrosskopf.de
   See Also||https://bugs.freedesktop.or
   ||g/show_bug.cgi?id=55482

--- Comment #4 from rob...@familiegrosskopf.de ---
I am missing the LO-Version.
This part of the log shows, that you are working with JRE 7 and Linux:
# JRE version: 7.0_09
# Java VM: OpenJDK Client VM (23.2-b09 mixed mode linux-x86 )
There are many problems with JRE 7 and Base - in Windows, Linux ...
I have added some examples to this report.

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


[Libreoffice-bugs] [Bug 55482] SIGFPE- Libreoffice crashed when accessing Base options with Linux, JRE 7

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55482

rob...@familiegrosskopf.de changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 58913] Crash when creating a form with Wizard

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58913

rob...@familiegrosskopf.de changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 57533] JRE 7, Linux: Unable to Add/Edit data in Data Entry Forms using Java 7

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=57533

rob...@familiegrosskopf.de changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 58913] Crash when creating a form with Wizard - Linux JRE 7

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58913

rob...@familiegrosskopf.de changed:

   What|Removed |Added

Summary|Crash when creating a form  |Crash when creating a form
   |with Wizard |with Wizard - Linux JRE 7

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


[Libreoffice-bugs] [Bug 58913] Crash when creating a form with Wizard - Linux JRE 7

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58913

rob...@familiegrosskopf.de changed:

   What|Removed |Added

 OS|All |Linux (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 58418] VIEWING: Keyboard accelerators should't be hidden without ALT-button pressed

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58418

Marco Menardi mme...@mail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from Marco Menardi mme...@mail.com ---
I can confirm that LiBo always shows them regardless the OS or DE is running
into.
I've checked LXDE (gtk based) and XP and apps there don't show the accelerator,
only LiBo does.
I've to add that other OS, like Windows 2003, show always the underlined
keyboard, and so does for instance KDE Plasma Desktop (even latest 4.10rc).
My personal opinion is that this hide everything UI trend is just madness
from a user perspective, it's just cosmetics that damages usefulness.
Never less, I agree with the reporter that LiBo should conform with the
environment and take as much as possible it's look and feel.
So, since at least KDE (and some Windows versions) show the accelerator in the
menu, LiBo code can't just remove them but needs to adapt.

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


[Libreoffice-bugs] [Bug 58270] Spaces between 'Category and Numbering' cross-references should be a non-breaking space

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58270

rob...@familiegrosskopf.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||rob...@familiegrosskopf.de
 Ever confirmed|0   |1

--- Comment #1 from rob...@familiegrosskopf.de ---
Can confirm this bug. There is no possibility to set a non-breaking space
between the category and the number.

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


[Libreoffice-bugs] [Bug 58856] : Crash on Print Preview

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58856

Naucher nauc...@bbsyd.dk changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |FIXED

--- Comment #5 from Naucher nauc...@bbsyd.dk ---
(In reply to comment #4)
 - or install deb from Libreoffice website

I did ... completely removed all LibreOffice packages from/via Synaptic and
then installed from downloaded files (incl. language package)

I'm now on Version 3.6.4.3 (Build ID: 2ef5aff) – and it works fine.

Thanks a lot for pushing me to the appropriate upgrading ;-)

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


[Libreoffice-bugs] [Bug 58855] FORMATTING: LO crashes with page-setup

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58855

Naucher nauc...@bbsyd.dk changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |FIXED

--- Comment #6 from Naucher nauc...@bbsyd.dk ---
(In reply to comment #3)
 Naucher: As fdo#58856, this version is quite old, we're waiting for your
 feedback with a newer version.

I now completely removed all LibreOffice packages from/via Synaptic and then
installed from downloaded files (incl. language package)

I'm now on Version 3.6.4.3 (Build ID: 2ef5aff) – and it works fine.

Thanks for pushing me to the appropriate upgrading ;-)

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


[Libreoffice-bugs] [Bug 58919] New: Cursor is at Left when Table is converted to RTL in Impress

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58919

  Priority: medium
Bug ID: 58919
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Cursor is at Left when Table is converted to RTL in
Impress
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: gokul.c...@gmail.com
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.1.0.0.alpha0+ Master
 Component: Libreoffice
   Product: LibreOffice

Created attachment 72362
  -- https://bugs.freedesktop.org/attachment.cgi?id=72362action=edit
Cursor is in Left Side whereas the Cursor as to be to Right

When an Table is Inserted in Impress The table alignment shows in Center For 
LTR Table And
When the table is Converted to RTL Table The Cursor Position is Still in Left,
Actually the cursor has to be in Right Side in each 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 58827] crash while opening docx file (having shapes)

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58827

Marco Menardi mme...@mail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||mme...@mail.com
 Ever confirmed|0   |1

--- Comment #3 from Marco Menardi mme...@mail.com ---
Debian GNU/Linux 64 Beta2, can't reproduce.
Btw, what is the difference among:
Microsoft Word 2007/2010 XML (.docx)
and
Office Open XML text (.docx) ?
(I've tested both)
Could you please try again with Beta2?

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


[Libreoffice-bugs] [Bug 58920] New: VIEWING: Error: Reference not found should be replaced with reference text

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58920

  Priority: medium
Bug ID: 58920
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: VIEWING: Error: Reference not found should be
replaced with reference text
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: rob...@familiegrosskopf.de
  Hardware: Other
Status: UNCONFIRMED
   Version: 3.3.0 release
 Component: Writer
   Product: LibreOffice

Writing a handbook for Base. There are many chapters. So I set references in
one chapter to another for my global-document. But when I change to the single
document, there appears an error: Error: Reference not found (German:
Fehler: Referenz nicht gefunden)
So I have to change the single-documents after I have created a *.odt-file from
the global-document. Find all errors and replace them with the text of the
reference - only without a reference.
Could be a good idea, if it could be changed to show only the reference-name.
So single-documents must not be changed and don't have a reference at this
position.

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


[Libreoffice-bugs] [Bug 58920] VIEWING: Error: Reference not found should be replaced with reference text

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58920

rob...@familiegrosskopf.de changed:

   What|Removed |Added

   Severity|normal  |enhancement

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


[Libreoffice-bugs] [Bug 58920] VIEWING: Error: Reference not found should be replaced with reference-name

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58920

rob...@familiegrosskopf.de changed:

   What|Removed |Added

Summary|VIEWING: Error: Reference  |VIEWING: Error: Reference
   |not found should be|not found should be
   |replaced with reference |replaced with
   |text|reference-name

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


[Libreoffice-bugs] [Bug 58855] FORMATTING: LO crashes with page-setup

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58855

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

   What|Removed |Added

 Resolution|FIXED   |WORKSFORME

--- Comment #7 from Julien Nabet serval2...@yahoo.fr ---
Naucher: thank you for your feedback.
Since there's no specific fix, I'll just put WFM.

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


[Libreoffice-bugs] [Bug 58921] New: FORMATTING: New cells conditional format missing after save and load file

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58921

  Priority: medium
Bug ID: 58921
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: FORMATTING: New cells conditional format missing after
save and load file
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: fcollo...@terra.es
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 3.6.3.2 release
 Component: Spreadsheet
   Product: LibreOffice

Problem description: 

Steps to reproduce:
1. Open a calc file with a conditional format in some cells (exemple: A1 and
A2)
2. Select A1 cell, Copy and paste it in A3. The conditonal format is not
copied.
3. Select A1 and drag the square in order to copy to A2 and A3. Conditional
format from A1 is copied in A2 and A3 and seems to work.
4. Save file.
5. Open file
6. Conditional format in A1 is OK, A2 and A3 conditional format is missing.

Affect to Gentoo-bin package 3.6.3.2 and 3.6.4.3 versions

Current behavior: New conditional format disasapears

Expected behavior: Conditional format being saved,


Operating System: Linux (Other)
Version: 3.6.3.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 58921] FORMATTING: New cells conditional format missing after save and load file

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58921

Francisco Lloret fcollo...@terra.es changed:

   What|Removed |Added

   Hardware|Other   |x86-64 (AMD64)
   Severity|normal  |major
   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 58922] New: OT layout engine: problem with combining glyph + zero-width-mark + glyph

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58922

  Priority: medium
Bug ID: 58922
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: OT layout engine: problem with combining glyph +
zero-width-mark + glyph
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: elie.r...@telecom-bretagne.eu
  Hardware: Other
Status: UNCONFIRMED
   Version: 3.6.4.3 release
 Component: Writer
   Product: LibreOffice

Created attachment 72363
  -- https://bugs.freedesktop.org/attachment.cgi?id=72363action=edit
Font showing the bug

When using writer if I type the text གཚོའི་ཁིའུ་ using the attached font
TestLig.ttf, I can see a buggy result (I'll attach the result in a later note),
with an enormous space between the two syllables. The correct result is
basically the same but without the space, I'll attach a correct result also in
a later note.

This bug comes from a quite rare use case in the layout engine: the font
contains in a ccmp table (lookup 2) the ligature: uni0F7C(ོ) uni0F60(འ)
uni0F72(ི) - uni0F7Cuni0F60uni0F72 : the first is zero-width mark apllying to
a glyph (in my example ཚ), and the second is not (the third doesn't really
matter here), the result is thus a non-zero-width mark... Some OT layout
engines also have difficulties with this case:
 - ConTeXt/LuaTeX had the same bug but I reported it and it's now fixed
 - on Debian stable, the layout engine behind gedit has it too
 - harfbuzz seems to handle it correctly.

Please tell me if I can provide more information or if I should report it to
some other place (ICU ?).

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


[Libreoffice-bugs] [Bug 58922] OT layout engine: problem with combining glyph + zero-width-mark + glyph

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58922

--- Comment #1 from Elie Roux elie.r...@telecom-bretagne.eu ---
Created attachment 72364
  -- https://bugs.freedesktop.org/attachment.cgi?id=72364action=edit
buggy result with LibreOffice

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


[Libreoffice-bugs] [Bug 58922] OT layout engine: problem with combining glyph + zero-width-mark + glyph

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58922

--- Comment #2 from Elie Roux elie.r...@telecom-bretagne.eu ---
Created attachment 72365
  -- https://bugs.freedesktop.org/attachment.cgi?id=72365action=edit
Good result (with Harfbuzz's hb-view)

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


[Libreoffice-bugs] [Bug 56963] FILEOPEN, EDITING: Stability degrades with large document

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56963

--- Comment #11 from wa4...@yahoo.com ---
I have tried many variations, turning off features, changing this and that,
without impacting the issue.  I am still able to edit the document, and add new
material, but I am no longer able to produce a PDF or update the indices.  At
first, it would only crash occasionally on updates, then it became common, but
persistence would allow me to do a good update.  Now I am increasingly stuck. 
Writer is becoming unusable for me.

My partners in the project are pressuring me to produce a publishable eBook
soon, or at least an updated PDF.  I am increasingly feeling in a quandary as
to what to do.  Perhaps I shall have to try to move to Word, or other system. 
I shudder at the thought of the re-working that might require.

Is there anything else I can do to help get to the bottom of the problem?  I
really need to get beyond this issue...

Thanks,
Nathan

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


[Libreoffice-bugs] [Bug 40435] Extension Anaphraseus: Uninstall not possible

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=40435

--- Comment #10 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
@Thomas:
What's the current status here?

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


[Libreoffice-bugs] [Bug 58923] New: Installation of incomplete downloaded .oxt possible

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58923

  Priority: medium
Bug ID: 58923
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Installation of incomplete downloaded .oxt possible
  Severity: normal
Classification: Unclassified
OS: Windows (All)
  Reporter: libreoff...@bielefeldundbuss.de
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.1.0.0.alpha0+ Master
 Component: Extensions
   Product: LibreOffice

Steps how to reproduce [Reproducible] with server  installation of 
4.1.0.0.alpha0+ (Build ID: c97a46ad210c4747af2309d0c75d9a0bdb642ed) TinderBox:
Win-x86@6, Branch:master, Time: 2012-12-31_22:40:07   -  ENGLISH UI / German
Locale  on German WIN7 Home Premium (64bit) with LO41 Masters User Profile
(Attention, this might destroy your installation:

1. Launch LibO
2. Menu 'Tools - Extension Manager -  Get more extensions online ...'
3. Search for LanguageTool 2.0
4. Start Download to a temporary folder
5. Immediately menu 'Tools - Extension Manager - Add'
6. Browse for LanguageTool-2.0.oxt and start installation for all users 
   at 20%  current download status  30%
   Expected: no installation, warning because download incomplete
   Actual: It seems that Extension will be installed quickly, but installation
   will be incomplete, Disable button will be missing in EM, and
   It will be impossible to Uninstall that extension (several
   Not found / Not exist messages

I did not yet check with what LibO Version that problem started and whether
other Extensions also are affected.

Message when try to uninstall:
--
(com.sun.star.lang.IllegalArgumentException) { { { Message = Cannot detect
media-type:
file:///C:/LibO_Server/LOM41/2012-12-31@6/program/../share/uno_packages/cache/uno_packages/lu34bdx.tmp_/LanguageTool-2.0.oxt,
Context = (com.sun.star.uno.XInterface) @58d7da8 } }, ArgumentPosition =
(short) -1 }

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


[Libreoffice-bugs] [Bug 58909] Languagetool 2.0: Installation fails with error Cannot create folder

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58909

--- Comment #2 from giedi_pri...@web.de ---
I did some more testing, it seemse that this problem only occurs when
LanguageTool1.9 ist installed. If I remove the old version, I can install
Languagetool 2.0 under LO4.0.0 Beta 2.

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


[Libreoffice-bugs] [Bug 47466] FORMATTING: Autoformat empty rows causes app to crash

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=47466

--- Comment #16 from Julien Nabet serval2...@yahoo.fr ---
I reproduced the crash with 3.6 sources with same bt and console logs:
/usr/include/c++/4.7/debug/safe_iterator.h:263:error: attempt to 
dereference a past-the-end iterator.

Objects involved in the operation:
iterator this @ 0x0x7fffcf7ae420 {
type =
N11__gnu_debug14_Safe_iteratorISt23_Rb_tree_const_iteratorIsENSt7__debug3setIsSt4lessIsESaIsE
(mutable iterator);
  state = past-the-end;
  references sequence with type `NSt7__debug3setIsSt4lessIsESaIsEEE' @
0x0x7fffcf7ae420
}
#0  0x7f13f9915475 in *__GI_raise (sig=optimized out) at
../nptl/sysdeps/unix/sysv/linux/raise.c:64
#1  0x7f13f99186f0 in *__GI_abort () at abort.c:92
#2  0x7f13fa1ba31d in __gnu_debug::_Error_formatter::_M_error() const ()
from /usr/lib/x86_64-linux-gnu/libstdc++.so.6
#3  0x7f13dd919a4c in
__gnu_debug::_Safe_iteratorstd::_Rb_tree_const_iteratorshort,
std::__debug::setshort, std::lessshort, std::allocatorshort  ::operator*
(
this=0x7fffcf7ae420) at /usr/include/c++/4.7/debug/safe_iterator.h:261
#4  0x7f13ddf17619 in ScDocFunc::AutoFormat (this=0x195cff0, rRange=...,
pTabMark=0x1a34b60, nFormatNo=1, bRecord=true, bApi=false)
at
/home/julien/compile-libreoffice/libo_3_6/sc/source/ui/docshell/docfunc.cxx:3738
#5  0x7f13de32121a in ScViewFunc::AutoFormat (this=0x1a33210, nFormatNo=1,
bRecord=1 '\001')
at
/home/julien/compile-libreoffice/libo_3_6/sc/source/ui/view/viewfun2.cxx:1571
#6  0x7f13de206eba in ScCellShell::Execute (this=0x1a529a0, rReq=...) at
/home/julien/compile-libreoffice/libo_3_6/sc/source/ui/view/cellsh3.cxx:848

The patch of comment14 works too.

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


[Libreoffice-bugs] [Bug 58909] Languagetool 2.0: Installation fails with error Cannot create folder

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58909

giedi_pri...@web.de 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 58909] Languagetool 2.0: Update from LT 1.9. fails with error Cannot create folder

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58909

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

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||misc2...@danielnaber.de
Summary|Languagetool 2.0:   |Languagetool 2.0: Update
   |Installation fails with |from LT 1.9. fails with
   |error Cannot create|error Cannot create
   |folder |folder
 Ever confirmed|0   |1

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

I removed my existing LanguageTool 2.0 - Installed LanguageTool 1.9 - Exit
and relaunch LibO - Start Installation of LanguageTool-2.0.oxt via Extension
Manager - Became asked to remove LanguageTool 2.0 - Confirmed Removal -
Error Message (see below)

Message:
--
(com.sun.star.lang.WrappedTargetRuntimeException) { { { Message =
[context=\bak\] caught unexpected com.sun.star.ucb.ContentCreationException:
Cannot create folder (invalid path): , Context = (com.sun.star.uno.XInterface)
@0 } }, TargetException = (any) { (com.sun.star.ucb.ContentCreationException) {
{ Message = Cannot create folder (invalid path): , Context =
(com.sun.star.uno.XInterface) @0 }, eError =
(com.sun.star.ucb.ContentCreationError) UNKNOWN } } }

@Daniel:
Can you please check?

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


[Libreoffice-bugs] [Bug 44998] Draw and Impress crash when opening context menu of a field

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44998

Milos Sramek msrame...@gmail.com changed:

   What|Removed |Added

   Hardware|x86-64 (AMD64)  |All
 OS|Linux (All) |All

--- Comment #9 from Milos Sramek msrame...@gmail.com ---
I tested LO 4.0 also on Windows, it crashes there too. Perhaps my explanation
was not clear enough to reproduce the situation. Therefore I created a
screecast (LO4.0 runing in Win 7 in Virtualbox):
http://www.ubuntuone.com/2nR4XtRIZkgla0YpxLNcyi . What one cannot see there are
the two clicks on the selected date format prior to the crash. Please note that
the menu items are not highlighted when the cursor is positioned above them
m

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


[Libreoffice-bugs] [Bug 58909] Languagetool 2.0: Update from LT 1.9. fails with error Cannot create folder

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58909

--- Comment #4 from Daniel Naber misc2...@danielnaber.de ---
I can now confirm the problem under Ubuntu Linux with LibreOffice 4.0.0 Beta 2,
whereas it works with LO 3.6.0.4. As it works with LO 3.6 this seems to be a LO
problem - I don't know what LanguageTool might be doing wrong to cause this.

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


[Libreoffice-bugs] [Bug 34552] EDITING: Calc loses row height value when modifying a cell

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=34552

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

   What|Removed |Added

 Status|REOPENED|NEEDINFO
 CC||serval2...@yahoo.fr

--- Comment #8 from Julien Nabet serval2...@yahoo.fr ---
I tried to reproduce this on:
- Debian x86-64 with 3.6 sources updated today.
- Win7 64, with 3.6.4.3
In both cases, I haven't reproduced the behaviour described in comment1.
Of course, I had to undo twice, since there were 2 actions to undo.
Perhaps I missed something but could someone give a try with 3.6.4.3?

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


[Libreoffice-bugs] [Bug 55235] TDF Site [el] (Greek): Dead Donate Link

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55235

tommy27 ba...@quipo.it changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||ba...@quipo.it
 Ever confirmed|0   |1

--- Comment #1 from tommy27 ba...@quipo.it ---
that's true

go to
http://el.libreoffice.org/get-involved/

localize this text link:
Κάνε δωρεά χρημάτων για την χρηματοδότηση του project:

it points to a dead link: http://challenge.documentfoundation.org/

instead of http://www.libreoffice.org/get-involved/donate/

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


[Libreoffice-bugs] [Bug 58913] Crash when creating a form with Wizard - Linux JRE 7

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58913

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

   What|Removed |Added

  Attachment #72357|text/plain  |application/bzip2
  mime type||

--- Comment #5 from Julien Nabet serval2...@yahoo.fr ---
Comment on attachment 72357
  -- https://bugs.freedesktop.org/attachment.cgi?id=72357
Strace

Fix mimetype

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


[Libreoffice-bugs] [Bug 58913] Crash when creating a form with Wizard - Linux JRE 7

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58913

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

On pc Debian x86-64 with master sources updated today, I reproduced the crash.

I attached bt + console logs.

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


[Libreoffice-bugs] [Bug 58913] Crash when creating a form with Wizard - Linux JRE 7

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58913

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

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 39789] Impress and Draw, Options button in Printer Settup dialog has no reaction.

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39789

Rob Snelders programm...@ertai.nl changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |programm...@ertai.nl
   |desktop.org |

--- Comment #6 from Rob Snelders programm...@ertai.nl ---
Searched a bit. But the view-shell of Impress/Draw doesn't have a the function:
SfxTabPage* ViewShell::CreatePrintOptionsPage(Window* pParent, const
SfxItemSet rSet)

So that will need to be created. I can be made a bit like:
/core/sw/source/ui/uiview/viewprt.cxx:152

When that function is created that will be called automaticly. The
SdAbstractDialogFactory does exist so maybe this can be done easily. Will look
into that next time

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


[Libreoffice-bugs] [Bug 58922] OT layout engine: problem with combining glyph + zero-width-mark + glyph

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58922

Behdad Esfahbod freedesk...@behdad.org changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 58922] OT layout engine: problem with combining glyph + zero-width-mark + glyph

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58922

Behdad Esfahbod freedesk...@behdad.org changed:

   What|Removed |Added

  Attachment #72363|text/plain  |application/font
  mime type||

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


[Libreoffice-bugs] [Bug 50917] Header keeps disappearing after re-opening a file saved in .doc format

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50917

Lynne lynneinja...@yahoo.co.uk changed:

   What|Removed |Added

   Hardware|x86 (IA32)  |All
 OS|Linux (All) |Windows (All)
Version|3.4.4 release   |3.6.3.2 release

--- Comment #2 from Lynne lynneinja...@yahoo.co.uk ---
I've just done a search and found someone else with exactly the same problem
that I'm encountering (they posted 25 Sept 2012 and were advised to report the
bug on this site):

When I am writing a paper in libreoffice writer, ... I have to place a header
at the top of the page. The header on the title page is different than the
subsequent pages. Everything seems to work fine when I save a[nd] close the
document. However, when I reopen the document, the header is missing from all
pages except the title page.

Don't know about this other person but I'm using v3.6.3.2 in Windows 8. I'm
saving in both .doc and .docx format and having the same problem with both.
(The footer is disappearing too.)

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


[Libreoffice-bugs] [Bug 50917] Header keeps disappearing after re-opening a file saved in .doc format

2013-01-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50917

Lynne lynneinja...@yahoo.co.uk changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
  Component|Libreoffice |Writer
 Ever confirmed|0   |1

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


  1   2   >