[Libreoffice-commits] .: Branch 'feature/gsoc-calc-perf' - sc/source

2012-05-26 Thread Daniel Bankston
 sc/source/filter/xml/xmlcelli.cxx |   71 --
 sc/source/filter/xml/xmlcelli.hxx |1 
 2 files changed, 8 insertions(+), 64 deletions(-)

New commits:
commit c827d7b23bdccc1adfb8b44ec04ea2b6503d57f5
Author: Daniel Bankston daniel.e.banks...@gmail.com
Date:   Sat May 26 02:54:41 2012 -0500

Remove ScDocFunc calls and unnecessary checks from ODS import for merged 
cells

It seems only one line was actually needed from ScDocFunc::MergeCells() 
during
ODS import, which was the call to ScDocument::DoMerge().  Also, IsMerged()
and unmerging is not needed during ODS import.

Change-Id: Ieec5abf8c4c8ce52df16cece77ffe1a1574e6397

diff --git a/sc/source/filter/xml/xmlcelli.cxx 
b/sc/source/filter/xml/xmlcelli.cxx
index 305a478..25f8f17 100644
--- a/sc/source/filter/xml/xmlcelli.cxx
+++ b/sc/source/filter/xml/xmlcelli.cxx
@@ -41,9 +41,7 @@
 #include unonames.hxx
 #include postit.hxx
 #include sheetdata.hxx
-#include cellmergeoption.hxx
 #include docsh.hxx
-#include docfunc.hxx
 
 #include XMLTableShapeImportHelper.hxx
 #include XMLTextPContext.hxx
@@ -455,69 +453,16 @@ SvXMLImportContext 
*ScXMLTableRowCellContext::CreateChildContext( sal_uInt16 nPr
 return pContext;
 }
 
-namespace {
-
-static bool ScCellExists( const ScAddress rScAddress )
-{
-return( rScAddress.Col() = MAXCOL  rScAddress.Row() = MAXROW );
-}
-
-void merge( ScDocShell* pDocSh, const ScRange rScRange, const bool bMerge )
-{
-if( pDocSh )
-{
-ScCellMergeOption aMergeOption(
-rScRange.aStart.Col(), rScRange.aStart.Row(),
-rScRange.aEnd.Col(), rScRange.aEnd.Row(), false
-);
-aMergeOption.maTabs.insert( rScRange.aStart.Tab() );
-if ( bMerge )
-pDocSh-GetDocFunc().MergeCells( aMergeOption, false, true, true );
-else
-pDocSh-GetDocFunc().UnmergeCells( aMergeOption, true, true );
-}
-}
-
-} //anonymous namespace
-
-bool ScXMLTableRowCellContext::IsMerged( ScRange rScRange, const ScAddress 
rScCell ) const
+void ScXMLTableRowCellContext::DoMerge( const ScAddress rScAddress, const 
SCCOL nCols, const SCROW nRows )
 {
-if( ScCellExists(rScCell) )
+SCCOL mergeToCol = rScAddress.Col() + nCols;
+SCROW mergeToRow = rScAddress.Row() + nRows;
+bool bInBounds = rScAddress.Col() = MAXCOL  rScAddress.Row() = MAXROW 

+   mergeToCol = MAXCOL  mergeToRow = MAXROW;
+if( bInBounds )
 {
-ScDocument* pDoc = rXMLImport.GetDocument();
-pDoc-ExtendOverlapped( rScRange );
-pDoc-ExtendMerge( rScRange );
-rScRange.Justify();
-if( rScRange.aStart.Col() == rScCell.Col()  rScRange.aEnd.Col() == 
rScCell.Col() 
-rScRange.aStart.Row() == rScCell.Row()  rScRange.aEnd.Row() == 
rScCell.Row() )
-return false;
-else
-return true;
-}
-return false;
-}
-
-void ScXMLTableRowCellContext::DoMerge( const ScAddress rScCellPos, const 
SCCOL nCols, const SCROW nRows )
-{
-if( ScCellExists(rScCellPos) )
-{
-SCTAB nCurrentSheet = GetScImport().GetTables().GetCurrentSheet();
-ScRange aScRange(
-rScCellPos.Col(), rScCellPos.Row(), nCurrentSheet,
-rScCellPos.Col(), rScCellPos.Row(), nCurrentSheet
-);
-ScDocShell* pDocSh = static_cast ScDocShell* ( 
rXMLImport.GetDocument()-GetDocumentShell() );
-if( IsMerged(aScRange, rScCellPos) )
-{
-//unmerge
-merge( pDocSh, aScRange, false );
-}
-//merge
-SCCOL newEndCol = aScRange.aStart.Col() + nCols;
-SCROW newEndRow = aScRange.aStart.Row() + nRows;
-aScRange.aEnd.SetCol( newEndCol );
-aScRange.aEnd.SetRow( newEndRow );
-merge( pDocSh, aScRange, true );
+rXMLImport.GetDocument()-DoMerge( rScAddress.Tab(),
+rScAddress.Col(), rScAddress.Row(), mergeToCol, mergeToRow );
 }
 }
 
diff --git a/sc/source/filter/xml/xmlcelli.hxx 
b/sc/source/filter/xml/xmlcelli.hxx
index 9cdcac5..70137f0 100644
--- a/sc/source/filter/xml/xmlcelli.hxx
+++ b/sc/source/filter/xml/xmlcelli.hxx
@@ -82,7 +82,6 @@ class ScXMLTableRowCellContext : public SvXMLImportContext
 
 sal_Int16 GetCellType(const rtl::OUString sOUValue) const;
 
-bool IsMerged(ScRange rScRange, const ScAddress rScCell) const;
 void DoMerge(const ScAddress rScCellPos, const SCCOL nCols, const SCROW 
nRows);
 
 void 
SetContentValidation(com::sun::star::uno::Referencecom::sun::star::beans::XPropertySet
 xPropSet);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


ODS import with merged cells

2012-05-26 Thread Daniel Bankston

Hi, Kohei and Markus,

I pushed my changes to ScXMLTableRowCellContext::DoMerge() where I have 
removed the ScDocFunc layer and simplified the whole method in general.


As I mentioned to Kohei at some point, when I was originally removing 
the UNO calls from the code, I was trying not to question the logic too 
much and just focus on direct conversion to equivalent Sc calls.  I went 
back through the ScXMLTableRowCellContext merge methods closely 
following what occurs in the code and thinking about what is actually 
trying to be accomplished.


It seems that the only thing that is actually needed here during import 
is a call to ScDocument::DoMerge().  As far as I could tell, everything 
else was unnecessary in the ScDocFunc layer.  Also, 
ScXMLTableRowCellContext::IsMerged() and the unmerge portion of 
ScXMLTableRowCellContext::DoMerge() that existed before this latest 
commit seem to have no purpose during import.  Whether a cell is merged 
or not is decided before ScXMLTableRowCellContext::DoMerge() is called 
(member bIsMerged), otherwise it wouldn't be called.  And unmerging a 
cell on import doesn't make sense, right?


After these changes, I can still successfully compile and pass sc unit 
tests.  Also, when I manually run calc and open a spreadsheet with 
merged cells, I see that the file is imported correctly.


Can you see anything that I might have missed or incorrectly removed?  
Thanks.



Respectfully,
Daniel Bankston
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] .: cui/source

2012-05-26 Thread David Tardon
 cui/source/options/treeopt.hrc |6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

New commits:
commit eb0a1da770161a7d680061eaa3d79f8ea8eef6ac
Author: David Tardon dtar...@redhat.com
Date:   Fri May 25 10:50:54 2012 +0200

resize options dialog to fit to increased tab height

Change-Id: I6255eba78aa4e012e6d29b7faed5f3bbc5302d25

diff --git a/cui/source/options/treeopt.hrc b/cui/source/options/treeopt.hrc
index 46572f4..fc4e55f 100644
--- a/cui/source/options/treeopt.hrc
+++ b/cui/source/options/treeopt.hrc
@@ -25,6 +25,8 @@
  *
  /
 
+#include sfx2/tabpage.hrc
+
 #include svtools/controldims.hrc
 
 #define PB_OK   1
@@ -55,8 +57,8 @@
 
 // metrics
 
-#define WIDTH_PAGEFRAME 263
-#define HEIGHT_PAGEFRAME191
+#define WIDTH_PAGEFRAME (TP_WIDTH + 3)
+#define HEIGHT_PAGEFRAME(TP_HEIGHT + 6)
 
 #define COL_1   (RSC_SP_DLG_INNERBORDER_LEFT)
 #define COL_2   (COL_1+0)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'feature/gbuild_merge' - testtools/CustomTarget_bridgetest.mk

2012-05-26 Thread David Ostrovsky
 testtools/CustomTarget_bridgetest.mk |   13 +
 1 file changed, 9 insertions(+), 4 deletions(-)

New commits:
commit b17a8fb79f44327fbb30be8301029c15a6962aa4
Author: David Ostrovsky david.ostrov...@gmx.de
Date:   Sat May 26 09:50:26 2012 +0200

fixed build error with --without-java parameter

Change-Id: Id383a2cd8bdaa14e6d991ee971a6b26230922b10

diff --git a/testtools/CustomTarget_bridgetest.mk 
b/testtools/CustomTarget_bridgetest.mk
index 4452c8e..a4237d3 100644
--- a/testtools/CustomTarget_bridgetest.mk
+++ b/testtools/CustomTarget_bridgetest.mk
@@ -37,11 +37,16 @@ BATCH_SUFFIX :=
 GIVE_EXEC_RIGHTS=chmod +x
 endif
 
-$(call gb_CustomTarget_get_target,testtools/bridgetest) : \
-   $(workdir_SERVER)/bridgetest_server$(BATCH_SUFFIX) \
+bridgetest_TARGET := $(workdir_SERVER)/bridgetest_server$(BATCH_SUFFIX) \
+   $(workdir_SERVER)/bridgetest_client$(BATCH_SUFFIX)
+
+ifneq ($(SOLAR_JAVA),)
+bridgetest_TARGET := $(bridgetest_TARGET) \
$(workdir_SERVER)/bridgetest_javaserver$(BATCH_SUFFIX) \
-   $(workdir_SERVER)/bridgetest_inprocess_java(BATCH_SUFFIX) \
-   $(workdir_SERVER)/bridgetest_client$(BATCH_SUFFIX) \
+   $(workdir_SERVER)/bridgetest_inprocess_java(BATCH_SUFFIX)
+endif
+
+$(call gb_CustomTarget_get_target,testtools/bridgetest) : $(bridgetest_TARGET)
 
 # which other prerequisites do we need here?
 $(workdir_SERVER)/bridgetest_server$(BATCH_SUFFIX) : \
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: build time optimization

2012-05-26 Thread Michael Meeks

On Thu, 2012-05-24 at 09:23 +0200, David Ostrovsky wrote:
 I'm trying to accelerate LO (developer) build on linux_x86-64 system.

:-) one systematic approach to this might be to try to unwind which
complex[1] headers are most included and see if, in fact, with some more
strategic forward definitions we can avoid that.

For the gnumake world the workdir/*/*.d files have all those deps that
can easily be sedded / sorted / uniq -c'd / sorted etc. into a list of
the top includes.

That of course has the benefit of creating a long-term speedup for all
of us that won't involve custom tweaking the system. IIRC there was some
easy hack related to that too.

ATB,

Michael.

[1] - where complex is presumably defined by 'slow to parse' (perhaps we
could time a compile of include that-header.hxx in a .cxx)
-- 
michael.me...@suse.com  , Pseudo Engineer, itinerant idiot

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


Re: ODS import with merged cells

2012-05-26 Thread Michael Meeks
Hi Daniel,

On Sat, 2012-05-26 at 03:36 -0500, Daniel Bankston wrote:
 I pushed my changes to ScXMLTableRowCellContext::DoMerge() where I have 
 removed the ScDocFunc layer and simplified the whole method in general.

Oh - hmm. So - for the collaborative editing work we need a clean
interface between user input (controller) and the model. So far we're
using the ScDocFunc for that, and at least we need to intercept all UI
editing at some suitably granular level through there.

Of course for file-filters we don't want people to go through there so
- that's fine ;-) but it'd be good not to start a get rid of ScDocFunc
jihad in general [IMHO etc.].

 Also, ScXMLTableRowCellContext::IsMerged() and the unmerge portion of 
 ScXMLTableRowCellContext::DoMerge() that existed before this latest 
 commit seem to have no purpose during import.

:-)

 After these changes, I can still successfully compile and pass sc unit 
 tests.  Also, when I manually run calc and open a spreadsheet with 
 merged cells, I see that the file is imported correctly.

Sounds lovely to me.

All the best,

Michael.

-- 
michael.me...@suse.com  , Pseudo Engineer, itinerant idiot

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


[PATCH] Unify OUTPATH values

2012-05-26 Thread Francois Tigeot
Hi,

I don't think there's any good reason to have wildly different OUTPATH names
for each specific platform variant.

The various names also lead to unnecessary work when packaging, just to
correctly handle LD_LIBRARY_PATH.

The attached patch reduces OUTPATH to two possible values: unx and wnt. Since
it is potentially intrusive, I prefer to show it here for review instead of
committing it directly.

-- 
Francois Tigeot
From d726ef2fca9430395010f0e6d34469f34583c78a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Fran=C3=A7ois=20Tigeot?= ftig...@wolfpond.org
Date: Sat, 26 May 2012 12:48:42 +0200
Subject: [PATCH] Unify OUTPATH values

* unx for Unix platforms, wnt for Windows ones

* this move reduces path lengths and simplifies packaging

Change-Id: I480a729c5bd25518dab09d89d52c104054d461c0
---
 configure.in |   48 ++--
 1 file changed, 14 insertions(+), 34 deletions(-)

diff --git a/configure.in b/configure.in
index 2382c83..ffa75d5 100644
--- a/configure.in
+++ b/configure.in
@@ -2994,7 +2994,7 @@ aix*)
 OS=AIX
 RTL_OS=AIX
 RTL_ARCH=PowerPC
-OUTPATH=unxaigppc
+OUTPATH=unx
 P_SEP=:
 SOLARLIB=-L../lib -L$SRC_ROOT/solenv/$OUTPATH/lib
 SOLARLIB=$SOLARLIB -L${SOLARVER}/${OUTPATH}${PROEXT}/lib
@@ -3008,6 +3008,7 @@ cygwin*)
 OS=WNT
 RTL_OS=Windows
 P_SEP=;
+OUTPATH=wnt
 
 case $host_cpu in
 i*86|x86_64)
@@ -3016,12 +3017,10 @@ cygwin*)
 CPUNAME=X86_64
 RTL_ARCH=X86_64
 LIB64=lib/x64
-OUTPATH=wntmscx$COMEX
 else
 CPU=I
 CPUNAME=INTEL
 RTL_ARCH=x86
-OUTPATH=wntmsci$COMEX
 fi
 ;;
 *)
@@ -3048,20 +3047,20 @@ darwin*)
 CPUNAME=ARM
 RTL_ARCH=ARM_EABI
 GUIBASE=cocoatouch
-OUTPATH=unxiosr
+OUTPATH=unx
 OS=IOS;
 ;;
 powerpc*)
 CPU=P
 CPUNAME=POWERPC
 RTL_ARCH=PowerPC
-OUTPATH=unxmacxp
+OUTPATH=unx
 ;;
 i*86|x86_64)
 CPU=I
 CPUNAME=INTEL
 RTL_ARCH=x86
-OUTPATH=unxmacxi
+OUTPATH=unx
 ;;
 *)
 AC_MSG_ERROR([Unsupported host_cpu $host_cpu for host_os $host_os])
@@ -3076,7 +3075,7 @@ dragonfly*)
 GUIBASE=unx
 OS=DRAGONFLY
 RTL_OS=DragonFly
-OUTPATH=unxdfly
+OUTPATH=unx
 P_SEP=:
 
 case $host_cpu in
@@ -3105,7 +3104,7 @@ freebsd*)
 GUIBASE=unx
 RTL_OS=FreeBSD
 OS=FREEBSD
-OUTPATH=unxfbsd
+OUTPATH=unx
 P_SEP=:
 
 case $host_cpu in
@@ -3113,7 +3112,6 @@ freebsd*)
 CPU=I
 CPUNAME=INTEL
 RTL_ARCH=x86
-OUTPATH=unxfbsdi
 ;;
 x86_64)
 CPU=X
@@ -3135,20 +3133,19 @@ kfreebsd*)
 GUIBASE=unx
 OS=LINUX
 RTL_OS=kFreeBSD
+OUTPATH=unx
 case $host_cpu in
 
 i*86)
 CPU=I
 CPUNAME=INTEL
 RTL_ARCH=x86
-OUTPATH=unxkfgi6
 ;;
 x86_64)
 CPU=X
 CPUNAME=X86_64
 RTL_ARCH=X86_64
 LIB64=lib64
-OUTPATH=unxkfgx6
 ;;
 *)
 AC_MSG_ERROR([Unsupported host_cpu $host_cpu for host_os $host_os])
@@ -3166,6 +3163,7 @@ linux-gnu*)
 OS=LINUX
 RTL_OS=Linux
 P_SEP=:
+OUTPATH=unx
 
 case $host_cpu in
 
@@ -3173,13 +3171,11 @@ linux-gnu*)
 CPU=L
 CPUNAME=AXP
 RTL_ARCH=ALPHA
-OUTPATH=unxlngaxp
 ;;
 arm*)
 CPU=R
 CPUNAME=ARM
 EPM_FLAGS=-a arm
-OUTPATH=unxlngr
 RTL_ARCH=ARM_EABI
 case $host_cpu in
 arm*-linux)
@@ -3192,92 +3188,78 @@ linux-gnu*)
 CPUNAME=HPPA
 RTL_ARCH=HPPA
 EPM_FLAGS=-a hppa
-OUTPATH=unxlnghppa
 ;;
 i*86)
 CPU=I
 CPUNAME=INTEL
 RTL_ARCH=x86
-OUTPATH=unxlngi6
 ;;
 ia64)
 CPU=A
 CPUNAME=IA64
 RTL_ARCH=IA64
-OUTPATH=unxlnga
 ;;
 mips)
 CPU=M
 CPUNAME=GODSON
 RTL_ARCH=MIPS_EB
 EPM_FLAGS=-a mips
-OUTPATH=unxlngmips
 ;;
 mips64)
 CPU=M
 CPUNAME=GODSON
 RTL_ARCH=MIPS_EB
 EPM_FLAGS=-a mips64
-OUTPATH=unxlngmips
 ;;
 mips64el)
 CPU=M
 CPUNAME=GODSON
 RTL_ARCH=MIPS_EL
 EPM_FLAGS=-a mips64el
-OUTPATH=unxlngmips
 ;;
 mipsel)
 CPU=M
 CPUNAME=GODSON
 RTL_ARCH=MIPS_EL
 EPM_FLAGS=-a mipsel
-OUTPATH=unxlngmips
 ;;
 m68k)
 CPU=6
 CPUNAME=M68K
 RTL_ARCH=M68K
-OUTPATH=unxlngm68k
 ;;
 powerpc)
 CPU=P
 CPUNAME=POWERPC
 RTL_ARCH=PowerPC
-OUTPATH=unxlngppc
 ;;
 powerpc64)
 CPU=P
 CPUNAME=POWERPC64
 RTL_ARCH=PowerPC_64
 LIB64=lib64
-OUTPATH=unxlngppc64
 ;;
 sparc)
 

Re: mentor gsoc

2012-05-26 Thread Michael Meeks
Hi Robert,

On Fri, 2012-05-25 at 19:42 -0400, Robert Sink wrote:
 I recently applied and accidently withdrew my request to be a mentor
 [was actually going to resubmit something more specific].

:-)

   I am an Android hobbyist with six HTC phones [G1, G2, Droid Eris,
 Evo 4G, and two Wildfire S [gsm/cdma]; all various adreno gpus] and
 two tablets [Nook Color and HP Touchpad].  I enjoy mostly rom cooking
 and perfecting, but I see a need for an open source office tool.  So,
 I'd like to pitch in some time.. call me a collaborator as I'm
 hesitant to think of myself in mentor terms.

Sounds good to me.

   I know xml, java and c++ and have the aforementioned testing
 platforms for Android if I may be of service.  Thank you for your
 time.

It'd be great to have you hacking on the project alongside the GSOC
student, that should present no problems I'm aware of - indeed, it might
encourage more open interactive development.

So - IIWY I'd just poke the existing developer  mentor for some code
pointers and get stuck in.

Great to have you around,

ATB,

Michael.

-- 
michael.me...@suse.com  , Pseudo Engineer, itinerant idiot

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


[Libreoffice] [GSoC 2012][svg export filter] Weekly Report #1

2012-05-26 Thread Marco Cecchetti


Hi everybody,
it follows my weekly report:

Report #1
-
In order to enable future support for slide transitions has been
needed to modify the part of the presentation engine handling
the slides navigation feature. A new structure for slide and
master page elements has been designed.

In order to simplify and speed up testing the new slide and master
page structures are created in JavaScript by transforming the
current exported elements. In case the new design will lead to
a good implementation these structures will be created directly in
C++ (except for the master page view group and its sub-elements
that are generated on-the-fly).

A MasterPageView class has been implemented in order to create
a master page view element and its sub-elements; it is also
responsible for updating the content of the included text fields.
A sub-element (both use or a clone) is created only if the
related exported visibility property, parsed by the MetaSlide
instance the master page view object belongs to, is set to true.
This strategy simplify visibility handling.

Modified Thumbnail class implementation, now the thumbnail element
structure in the index page is simplified. Modification to the
index mode implementation has been needed in order to get the index
mode working with the new slide and master page structure, moreover
Firefox performance in index mode has been improved.

Tested the new implementation on the following browsers:

- Firefox 3.6, 4, 10, latest, aurora;
- IE 9, 10;
- Chrome 10, latest;
- Opera 11.50, 11.62, Next;
- Safari 5.1.5
- Fennec, Opera Mobile.

The last two through emulators. All work correctly.

Add a lot of comments to the source code. Added documentation
comments to classes and methods.
---

You can read more details on my project log book:
https://docs.google.com/document/d/1GSLPSIWRGSDTSi69dT9Te8tRyTJcAekxT7scoCoGO2M/edit?pli=1#heading=h.zd4f29g9qeoc

You can download a sample presentation here:
https://docs.google.com/open?id=0BwS_9-CU4098UFhHSm1BYWE3Q0k
In order to download the zip file click on the Download item
under the File menu.

Indeed all new features are under the hood, for something more
exciting to watch you have to wait until the first slide
transitions will be available.

You can look at the source code in the feature branch:
feature/svg-export.

Cheers,
-- Marco


--
Using Opera's revolutionary e-mail client: http://www.opera.com/mail/
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [PATCH] Unify OUTPATH values

2012-05-26 Thread Michael Meeks
Hi Francois,

On Sat, 2012-05-26 at 12:59 +0200, Francois Tigeot wrote:
 I don't think there's any good reason to have wildly different OUTPATH names
 for each specific platform variant.

:-)

 The various names also lead to unnecessary work when packaging, just to
 correctly handle LD_LIBRARY_PATH.

Heh.

 The attached patch reduces OUTPATH to two possible values: unx and wnt. Since
 it is potentially intrusive, I prefer to show it here for review instead of
 committing it directly.

Just to check; I cross compile from unix-linux to unix-android, and
have to have both native and remote toolchains eg.

$ ls /opt/libreoffice/devel/soltools
adjustvisibility  checkdll  cpp  giparser  inc  javadep  ldump  mkdepend
prj  support  testhxx  unxandr.pro  unxlngi6.pro  util  winunistd

Would your change make that more difficult ? [ admittedly the names are
highly non-intuitive, and hard to write when explaining to others, and I
don't believe the parallel .pro / non-pro distinctions is necessary ;-)
]

HTH,

Michael.

-- 
michael.me...@suse.com  , Pseudo Engineer, itinerant idiot

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


Re: [Libreoffice] [GSoC 2012][svg export filter] Weekly Report #1

2012-05-26 Thread Marco Cecchetti
On Sat, 26 May 2012 13:09:09 +0200, Marco Cecchetti mrcek...@gmail.com  
wrote:


skip


You can download a sample presentation here:
https://docs.google.com/open?id=0BwS_9-CU4098UFhHSm1BYWE3Q0k
In order to download the zip file click on the Download item
under the File menu.


Sorry, the right link is the following one:
https://docs.google.com/open?id=0BwS_9-CU4098bk5QMjNtS2IzZzQ


-- Marco



--
Using Opera's revolutionary e-mail client: http://www.opera.com/mail/
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [PATCH] Unify OUTPATH values

2012-05-26 Thread Francois Tigeot
Hey Michael,

On Sat, May 26, 2012 at 12:15:51PM +0100, Michael Meeks wrote:
 
 On Sat, 2012-05-26 at 12:59 +0200, Francois Tigeot wrote:
  The attached patch reduces OUTPATH to two possible values: unx and wnt. 
  Since
  it is potentially intrusive, I prefer to show it here for review instead of
  committing it directly.
 
   Just to check; I cross compile from unix-linux to unix-android, and
 have to have both native and remote toolchains eg.
 
 $ ls /opt/libreoffice/devel/soltools
 adjustvisibility  checkdll  cpp  giparser  inc  javadep  ldump  mkdepend
 prj  support  testhxx  unxandr.pro  unxlngi6.pro  util  winunistd
 
   Would your change make that more difficult ?

With the patch, there would only be one unx.pro directory.

I didn't think cross-compiling could be done this way; in my mind, separate
git clones were used for each destination platform.

 [ admittedly the names are
 highly non-intuitive, and hard to write when explaining to others, and I
 don't believe the parallel .pro / non-pro distinctions is necessary ;-)

The names are suspiciously close to 8.3 ms-dos names. Probably another dark
remnant from the past ;)

The .pro extension may not be present in all cases; iirc it disappears when
some debug options are enabled.

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


Re: feature/gbuild_merge needs testing

2012-05-26 Thread David Tardon
On Fri, May 25, 2012 at 02:20:42PM +0200, Noel Grandin wrote:
 Build error log attached for a cygwin build (i.e. on Windows).
 

 /cygdrive/c/LibreOffice/libo/connectivity/Library_postgresql-sdbc-impl.mk:49: 
 *** Cannot link against library/libraries openssl secur32 ldap. Libraries 
 must be registered in Repository.mk.  Stop.

Should be fixed now.

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


[Libreoffice-commits] .: Branch 'feature/gbuild_merge' - solenv/gbuild

2012-05-26 Thread David Tardon
 solenv/gbuild/platform/WNT_INTEL_MSC.mk |3 +++
 1 file changed, 3 insertions(+)

New commits:
commit 3ae36ad5b5b9e81a4ab208138e91ec463ec0c2a6
Author: David Tardon dtar...@redhat.com
Date:   Sat May 26 14:04:25 2012 +0200

register additional libs required by postgressql

Change-Id: I223122d9f99c8068af21c80f9b52642c762c79af

diff --git a/solenv/gbuild/platform/WNT_INTEL_MSC.mk 
b/solenv/gbuild/platform/WNT_INTEL_MSC.mk
index 0676ea7..fb833f7 100644
--- a/solenv/gbuild/platform/WNT_INTEL_MSC.mk
+++ b/solenv/gbuild/platform/WNT_INTEL_MSC.mk
@@ -396,6 +396,7 @@ gb_Library_PLAINLIBS_NONE += \
imm32\
kernel32 \
jawt \
+   ldap \
libcmt \
libcmtd \
mpr \
@@ -406,7 +407,9 @@ gb_Library_PLAINLIBS_NONE += \
$(gb_Library_win32_OLDNAMES) \
ole32 \
oleaut32 \
+   openssl \
propsys \
+   secur32 \
shell32 \
shlwapi \
urlmon \
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: feature/gbuild_merge needs testing

2012-05-26 Thread David Ostrovsky

On 25.05.2012 14:20, Noel Grandin wrote:

make[2]: *** No rule to make target 
`D:/workdir/wntmsci12.pro/CustomTarget/testtools/bridgetest/bridgetest_javaserver.bat',
 needed by `D:/workdir/wntmsci12.pro/CustomTarget/testtools/bridgetest.done'.  
Stop.

should be fixed now (with --without-java)

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


Re: [PATCH] Unify OUTPATH values

2012-05-26 Thread Michael Meeks

On Sat, 2012-05-26 at 13:47 +0200, Francois Tigeot wrote:
 I didn't think cross-compiling could be done this way; in my mind, separate
 git clones were used for each destination platform.

Right; but currently we build both the native platform tools necessary
for doing the cross-compiling, and also the target platform tools into
the same source tree :-) There are other ways to imagine doing it of
course, but - this one works as of now.

 The names are suspiciously close to 8.3 ms-dos names. Probably another dark
 remnant from the past ;)

:-)

So, sadly I don't think this flies as of now,

Regards,

Michael.

-- 
michael.me...@suse.com  , Pseudo Engineer, itinerant idiot

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


[PATCH] fix name in the package description (fr)

2012-05-26 Thread Olivier R.
Hi *,

A tiny fix in a description file:
http://nabble.documentfoundation.org/file/n3986158/0001-fix-name-in-the-package-description-fr.patch
0001-fix-name-in-the-package-description-fr.patch 

Olivier

--
View this message in context: 
http://nabble.documentfoundation.org/PATCH-fix-name-in-the-package-description-fr-tp3986158.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


Re: feature/gbuild_merge needs testing

2012-05-26 Thread Michael Meeks
Hi David,

On Fri, 2012-05-25 at 13:28 +0200, David Tardon wrote:
 There is experimental branch feature/tail_build that adds 19 more, but
 it requires a change to build.pl, so I do not intend to push it into 3.6.
 Of course, if people who actually know something about the build.pl
 script look at commit 726ac115a981567b3f41613d0e0163bd010e6b17 and tell
 me that I am not a total idiot, or even that it might work at the right
 phase of moon, I can be convinced otherwise :-)

I had the misfortune to hack on build.pl before :-) and your patch
looks reasonable to me. I'd love to have it in for 3.6 ... I didn't
checkout the branch and/or I couldn't make the make command that dumps
the deps work but I assume the parsing logic is fine. We may have some
explicit \r\n removal nonsense on windows (chomp has never worked well
for me there for some - prolly cygwin related reason) - but lets see.

-my $modcount = %modules;
 
 return %modules;

seems redundant in get_tail_build_modules.

 # insert dep. on tail_build, if necessary
 if (@tail_build_deps  !defined $$deps{$tail_build_prj}) {
 $$deps{$tail_build_prj} = 1;
 }

The !defined looks redundant until you read get_parent_deps which has a
count of the deps in there.

So - it all looks fine really :-) [ at least to me ]

Thanks !

Michael.

-- 
michael.me...@suse.com  , Pseudo Engineer, itinerant idiot

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


Re: ODS import with merged cells

2012-05-26 Thread Markus Mohrhard
Hey Daniel,

2012/5/26 Daniel Bankston daniel.dev.libreoff...@gmail.com:
 Hi, Kohei and Markus,

 I pushed my changes to ScXMLTableRowCellContext::DoMerge() where I have
 removed the ScDocFunc layer and simplified the whole method in general.

Great. I will have a look at it on Tuesday.


 As I mentioned to Kohei at some point, when I was originally removing the
 UNO calls from the code, I was trying not to question the logic too much and
 just focus on direct conversion to equivalent Sc calls.  I went back through
 the ScXMLTableRowCellContext merge methods closely following what occurs in
 the code and thinking about what is actually trying to be accomplished.

 It seems that the only thing that is actually needed here during import is a
 call to ScDocument::DoMerge().  As far as I could tell, everything else was
 unnecessary in the ScDocFunc layer.  Also,
 ScXMLTableRowCellContext::IsMerged() and the unmerge portion of
 ScXMLTableRowCellContext::DoMerge() that existed before this latest commit
 seem to have no purpose during import.  Whether a cell is merged or not is
 decided before ScXMLTableRowCellContext::DoMerge() is called (member
 bIsMerged), otherwise it wouldn't be called.  And unmerging a cell on import
 doesn't make sense, right?

I'm not 100% sure about that. If I recall correctly we need to unmerge
cells before we can merge bigger areas. But without having a closer
look at the code I can only speculate that it is for this.


 After these changes, I can still successfully compile and pass sc unit
 tests.  Also, when I manually run calc and open a spreadsheet with merged
 cells, I see that the file is imported correctly.

That our tests pass doe not mean much. It is always a good diea to
check if one of the featurres that you convert is covered by our
import tests. and even if it is it has often just some basic test
cases like in the merge case. In such cases it would be great if you
could add some more test cases especially for the corner cases you saw
in the code.


 Can you see anything that I might have missed or incorrectly removed?

No. From what you say it seems all reasonable.

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


Re: ODS import with merged cells

2012-05-26 Thread Markus Mohrhard
Hey Michael,

        Oh - hmm. So - for the collaborative editing work we need a clean
 interface between user input (controller) and the model. So far we're
 using the ScDocFunc for that, and at least we need to intercept all UI
 editing at some suitably granular level through there.

        Of course for file-filters we don't want people to go through there so
 - that's fine ;-) but it'd be good not to start a get rid of ScDocFunc
 jihad in general [IMHO etc.].

That is not planned. Only during import all the code in ScDocFunc does
not make much sense. We neither need to repaint areas nor do we need
undo/redo code.

We did not plan to replace ScDocFunc calls in any other place in calc.

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


fdo#45830 - Language/User Interface: current choice indicated as default

2012-05-26 Thread Rob Snelders

Hi All,

I saw this bug and I found where the change needs to be for this bug.
The problem is that the default-value for the locale setting is in the 
list the current setting, not the locale of the system. But can I solve 
this or should this be asked to the usability-mailinglist? And what is 
the emailaddress of that mailinglist?


--
Greetings,
Rob Snelders
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: ODS import with merged cells

2012-05-26 Thread Michael Meeks

On Sat, 2012-05-26 at 17:24 +0200, Markus Mohrhard wrote:
 That is not planned. Only during import all the code in ScDocFunc does
 not make much sense. We neither need to repaint areas nor do we need
 undo/redo code.

Cool - yes, it's a nonsense to be doing all that pointless non-work on
import :-)

 We did not plan to replace ScDocFunc calls in any other place in calc.

Good stuff - thanks !

Michael.

-- 
michael.me...@suse.com  , Pseudo Engineer, itinerant idiot

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


[Libreoffice-commits] .: remotebridges/InternalUnoApi_uuresolver.mk remotebridges/Library_uuresolver.mk remotebridges/Makefile remotebridges/Module_remotebridges.mk remotebridges/prj remotebridges/sou

2012-05-26 Thread David Tardon
 Repository.mk|1 
 remotebridges/InternalUnoApi_uuresolver.mk   |   32 ++
 remotebridges/Library_uuresolver.mk  |   47 +++
 remotebridges/Makefile   |7 ++
 remotebridges/Module_remotebridges.mk|   35 +++
 remotebridges/prj/build.lst  |2 
 remotebridges/prj/d.lst  |4 -
 remotebridges/source/unourl_resolver/makefile.mk |   72 ---
 ure/Rdb_ure.mk   |2 
 9 files changed, 124 insertions(+), 78 deletions(-)

New commits:
commit e726638eb8bd9e8fab3268259ddee9de88c56a39
Author: David Tardon dtar...@redhat.com
Date:   Sat May 26 16:06:33 2012 +0200

gbuildize remotebridges

Change-Id: I01e97df2f9f098719e3de578526cb1d13d2db6fa

diff --git a/Repository.mk b/Repository.mk
index ebefb94..a8cb169 100644
--- a/Repository.mk
+++ b/Repository.mk
@@ -561,6 +561,7 @@ $(eval $(call gb_Helper_register_libraries,UNOLIBS_URE, \
 streams \
 textinstream \
 textoutstream \
+uuresolver \
 ))
 
 $(eval $(call gb_Helper_register_libraries,UNOVERLIBS, \
diff --git a/remotebridges/InternalUnoApi_uuresolver.mk 
b/remotebridges/InternalUnoApi_uuresolver.mk
new file mode 100644
index 000..2ac538e
--- /dev/null
+++ b/remotebridges/InternalUnoApi_uuresolver.mk
@@ -0,0 +1,32 @@
+# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
+# Version: MPL 1.1 / GPLv3+ / LGPLv3+
+#
+# The contents of this file are subject to the Mozilla Public License Version
+# 1.1 (the License); you may not use this file except in compliance with
+# the License or as specified alternatively below. You may obtain a copy of
+# the License at http://www.mozilla.org/MPL/
+#
+# Software distributed under the License is distributed on an AS IS basis,
+# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+# for the specific language governing rights and limitations under the
+# License.
+#
+# Major Contributor(s):
+# Copyright (C) 2012 Red Hat, Inc., David Tardon dtar...@redhat.com
+#  (initial developer)
+#
+# All Rights Reserved.
+#
+# For minor contributions see the git repository.
+#
+# Alternatively, the contents of this file may be used under the terms of
+# either the GNU General Public License Version 3 or later (the GPLv3+), or
+# the GNU Lesser General Public License Version 3 or later (the LGPLv3+),
+# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
+# instead of those above.
+
+$(eval $(call gb_InternalUnoApi_InternalUnoApi,uuresolver))
+
+$(eval $(call 
gb_InternalUnoApi_set_xmlfile,uuresolver,remotebridges/source/unourl_resolver/uuresolver.xml))
+
+# vim: set shiftwidth=4 tabstop=4 noexpandtab:
diff --git a/remotebridges/Library_uuresolver.mk 
b/remotebridges/Library_uuresolver.mk
new file mode 100644
index 000..15fa64e
--- /dev/null
+++ b/remotebridges/Library_uuresolver.mk
@@ -0,0 +1,47 @@
+# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
+# Version: MPL 1.1 / GPLv3+ / LGPLv3+
+#
+# The contents of this file are subject to the Mozilla Public License Version
+# 1.1 (the License); you may not use this file except in compliance with
+# the License or as specified alternatively below. You may obtain a copy of
+# the License at http://www.mozilla.org/MPL/
+#
+# Software distributed under the License is distributed on an AS IS basis,
+# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+# for the specific language governing rights and limitations under the
+# License.
+#
+# Major Contributor(s):
+# Copyright (C) 2012 Red Hat, Inc., David Tardon dtar...@redhat.com
+#  (initial developer)
+#
+# All Rights Reserved.
+#
+# For minor contributions see the git repository.
+#
+# Alternatively, the contents of this file may be used under the terms of
+# either the GNU General Public License Version 3 or later (the GPLv3+), or
+# the GNU Lesser General Public License Version 3 or later (the LGPLv3+),
+# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
+# instead of those above.
+
+$(eval $(call gb_Library_Library,uuresolver))
+
+$(eval $(call 
gb_Library_set_componentfile,uuresolver,remotebridges/source/unourl_resolver/uuresolver))
+
+$(eval $(call gb_Library_use_internal_api,uuresolver,\
+   uuresolver \
+))
+
+$(eval $(call gb_Library_use_libraries,uuresolver,\
+   cppu \
+   cppuhelper \
+   sal \
+   $(gb_STDLIBS) \
+))
+
+$(eval $(call gb_Library_add_exception_objects,uuresolver,\
+   remotebridges/source/unourl_resolver/unourl_resolver \
+))
+
+# vim: set shiftwidth=4 tabstop=4 noexpandtab:
diff --git a/remotebridges/Makefile b/remotebridges/Makefile
new file mode 100644
index 000..ccb1c85
--- /dev/null
+++ b/remotebridges/Makefile
@@ -0,0 +1,7 @@
+# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
+
+module_directory:=$(dir $(realpath 

Re: ODS import with merged cells

2012-05-26 Thread Daniel Bankston

On 05/26/2012 10:58 AM, Michael Meeks wrote:

On Sat, 2012-05-26 at 17:24 +0200, Markus Mohrhard wrote:

That is not planned. Only during import all the code in ScDocFunc does
not make much sense. We neither need to repaint areas nor do we need
undo/redo code.

Cool - yes, it's a nonsense to be doing all that pointless non-work on
import :-)


We did not plan to replace ScDocFunc calls in any other place in calc.

Good stuff - thanks !

Michael.



However, here is a message of doom to all UNO or ScDocFunc calls during 
import:

Your days are numbered because I'm coming for you! :-)
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [PATCH] Don't make tab headers bold by default

2012-05-26 Thread Norbert Thiebaud
On Fri, May 25, 2012 at 12:07 PM, Stefan Knorr (Astron)
heinzless...@googlemail.com wrote:
 Hi there,

 I've always wondered why LibreOffice (and before it Ooo) would make
 the selected tab header bold, because no OS I know does that natively.
 While there is an option with which backends could turn this behaviour
 off, if there's no need for that we probably should remove it, I
 guess.
 Attached patch does that and even works. Can I push or is there
 something that seems wrong?


I'm confused:

@@ -723,9 +705,7 @@ void TabControl::ImplShowFocus()
 // make sure the focussed item rect is computed using a bold font
 // the font may have changed meanwhile due to mouse over

-Font aOldFont( GetFont() );
-Font aFont( aOldFont );
-aFont.SetWeight( (!ImplGetSVData()-maNWFData.mbNoBoldTabFocus) ?
WEIGHT_BOLD : WEIGHT_LIGHT );
+Font aFont( GetFont() );
 SetFont( aFont );
^^^ you are setting the Font to the same thing it used to have here no
(since you remove the code that used to potentially alter it)?

 sal_uInt16   nCurPos = GetPagePos( mnCurPageId );
@@ -771,8 +751,7 @@ void TabControl::ImplShowFocus()
 aRect.Bottom() = aRect.Top() + aImageSize.Height() + 4;
 }
 ShowFocus( aRect );
-
-SetFont( aOldFont );
+SetFont( aFont );
 }

Why the last SetFont() ? you are not messing with the font anymore
right ? so it has not changed... no need to restore it, no?

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


Re: [PATCH] Unify OUTPATH values

2012-05-26 Thread Norbert Thiebaud
On Sat, May 26, 2012 at 5:59 AM, Francois Tigeot ftig...@wolfpond.org wrote:
 Hi,

 I don't think there's any good reason to have wildly different OUTPATH names
 for each specific platform variant.

 The various names also lead to unnecessary work when packaging, just to
 correctly handle LD_LIBRARY_PATH.

 The attached patch reduces OUTPATH to two possible values: unx and wnt. Since
 it is potentially intrusive, I prefer to show it here for review instead of
 committing it directly.

Francois,

That would fatally break at least cross-compile. I'm afraid that
cannot be merged in that form.

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


Re: feature/gbuild_merge needs testing

2012-05-26 Thread David Tardon
Hi,

On Sat, May 26, 2012 at 03:36:54PM +0100, Michael Meeks wrote:
 Hi David,
 
 On Fri, 2012-05-25 at 13:28 +0200, David Tardon wrote:
  There is experimental branch feature/tail_build that adds 19 more, but
  it requires a change to build.pl, so I do not intend to push it into 3.6.
  Of course, if people who actually know something about the build.pl
  script look at commit 726ac115a981567b3f41613d0e0163bd010e6b17 and tell
  me that I am not a total idiot, or even that it might work at the right
  phase of moon, I can be convinced otherwise :-)
 
   I had the misfortune to hack on build.pl before :-) and your patch
 looks reasonable to me. I'd love to have it in for 3.6 ... I didn't
 checkout the branch and/or I couldn't make the make command that dumps
 the deps work but I assume the parsing logic is fine. We may have some
 explicit \r\n removal nonsense on windows (chomp has never worked well
 for me there for some - prolly cygwin related reason) - but lets see.

Let's hope the branch is going to get some testing on Windows, then.

 
 -my $modcount = %modules;
  
  return %modules;
 
   seems redundant in get_tail_build_modules.

Right, it is a forgotten remnant of a debug print. There is also a print
in filter_tail_build_dependencies that I plan to remove before merging
the branch on master.

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


Re: feature/gbuild_merge needs testing

2012-05-26 Thread Norbert Thiebaud
On Fri, May 25, 2012 at 6:28 AM, David Tardon dtar...@redhat.com wrote:
 Hi all,

 The number of modules newly added to tail_build is not as good as I
 expected--only 9, if I counted correctly.

I ran module_dep on gbuild_merge...
for postprocess the parent list looks like (note: (*) indicate a gbuild module)

n_th@tpamac /Volumes/TBRAM/core
$/Volumes/Raid0/dev-tools/modules_dep/modules_dep -p postprocess -u
Error: dependency helpcontent2 of module postprocess does not have a
known build.lst associated to it (I did not have helpcontent2 hence
the message)
postprocess
  + tail_build (*)
 + xsltml
+ external
   + soltools
  + solenv (*)
 + xmlreader (*)
+ sal (*)
   + cppunit
   + boost
   + xml2cmp (*)
+ offapi (*)
   + idlc (*)
  + registry (*)
 + store (*)
 + salhelper (*)
   + udkapi (*)
  + codemaker (*)
+ cppu (*)
 + ure (*)
+ stoc (*)
   + libxslt
  + libxml2
   + jvmfwk (*)
  + comphelper (*)
 + officecfg (*)
 + ucbhelper (*)
+ cppuhelper (*)
   + jvmaccess (*)
  + ridljar (*)
   + rdbmaker (*)
+ remotebridges
+ javaunohelper (*)
   + unoil (*)
  + cli_ure
 + bridges
+ jurt (*)
+ io (*)
+ binaryurp (*)
 + unotest (*)
+ qadevOOo (*)
 + tools (*)
+ i18npool (*)
   + cpputools (*)
   + regexp (*)
  + i18nutil (*)
 + icu
   + sax (*)
  + expat
+ basegfx (*)
   + o3tl (*)
+ zlib
 + sysui
+ setup_native
   + l10ntools (*)
  + clucene (*)
  + berkeleydb
 + rhino
 + readlicense_oo
 + icc
 + xpdf
 + vigra
 + twain (*)
 + saxon
+ stax
 + sane (*)
 + redland
+ openssl
 + python
 + postgresql
+ moz
   + nss
 + neon
 + mythes
+ hunspell
 + mdds
 + lpsolve
 + libvisio
+ libwpg
   + libwpd
 + libwps
 + libxmlsec
 + libexttextcat
 + libcmis
+ curl
 + libcdr
+ lcms2
 + jpeg
 + jfreereport
+ apache-commons
   + tomcat
 + hyphen
 + hsqldb
 + graphite
 + freetype
 + fontconfig
 + cairo
+ libpng
 + beanshell
 + afms
  + stlport
  + nlpsolver (*)
  + mysqlc
 + mysqlcppconn
  + languagetool
  + pyuno
  + dictionaries
  + more_fonts
  + testtools (*)
  + odk
 + unodevtools (*)
 + autodoc
+ udm
   + cosv
  + librsvg
 + gettext
 + glib
 + gdk-pixbuf
 + libgsf
 + libcroco
 + pango
  + extras
  + epm
  + embedserv (*)
  + ct2n
  + crashrep
 + shell (*)
  + binfilter


unotest parents give:
n_th@tpamac /Volumes/TBRAM/core
$/Volumes/Raid0/dev-tools/modules_dep/modules_dep -c unotest -u | grep
-v (\*)
Error: dependency helpcontent2 of module postprocess does not have a
known build.lst associated to it
 + postprocess
   + instsetoo_native
 + binfilter
   + crashrep
+ pyuno
   + cross_toolset

since binfilter is already treated separately (i.e wait for tail_build
to finish)
unotest can be integrated... on the other hand it seems quite a few
module use it without telling their build.lst they do... so their can
be partial build issue

twain:
twain (*)
  + tail_build (*)
 + postprocess
+ packimages (*)
   + instsetoo_native
 + binfilter
  + extensions (*)

ditto for sane.

so they can be merged in tail_build I think

nlpsolver, embedserv and testttols are directly dep of postprocess and
nothing else.. they can be put in tail_build.

-- 
module_dep is in contrib/dev-tools/module_dep
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] GTK theme toolbar button rendering

2012-05-26 Thread Ruslan Kabatsayev
Hello,

Current GTK theming plugin renders toolbar buttons as non-flat
unconditionally. But some themes, e.g. oxygen-gtk expect toolbuttons
to be flat, and the desktop integration fails.
I'm attaching a patch to fix this. The patch has been tested with
oxygen-gtk(current master), QtCurve-GTK, Glossy and Simple themes.

Regards,
Ruslan


0001-GTK-theming-fix-rendering-of-toolbuttons.patch
Description: Binary data
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] .: extras/source

2012-05-26 Thread Alexander Wilms
 extras/source/templates/layout/lyt-metropolis.otp |binary
 1 file changed

New commits:
commit d1dd475389b798e99d09f2dd9f1b52341bb610a0
Author: Alexander Wilms alexander.wi...@zoho.com
Date:   Sat May 26 14:42:04 2012 +0200

added the metropolis master page

diff --git a/extras/source/templates/layout/lyt-metropolis.otp 
b/extras/source/templates/layout/lyt-metropolis.otp
new file mode 100644
index 000..a1aaf7d
Binary files /dev/null and b/extras/source/templates/layout/lyt-metropolis.otp 
differ
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'feature/gbuild_merge' - connectivity/prj

2012-05-26 Thread Norbert Thiebaud
 connectivity/prj/d.lst |   54 -
 1 file changed, 54 deletions(-)

New commits:
commit b5d67389269ecd42b5422c2cb8f17bac496d6176
Author: Norbert Thiebaud nthieb...@gmail.com
Date:   Sat May 26 12:02:57 2012 -0500

connectivity is a gbuild module now, clean-up d.lst

Change-Id: I30965c09fdc96ec984c18b5e55a8edb69bdcba17

diff --git a/connectivity/prj/d.lst b/connectivity/prj/d.lst
index 86533a2..e69de29 100644
--- a/connectivity/prj/d.lst
+++ b/connectivity/prj/d.lst
@@ -1,54 +0,0 @@
-..\%__SRC%\bin\*.dll %_DEST%\bin\*.dll
-..\%__SRC%\bin\*.res %_DEST%\bin\*.res
-..\%__SRC%\lib\*.so %_DEST%\lib\*.so
-..\%__SRC%\lib\*.dylib %_DEST%\lib\*.dylib
-..\%__SRC%\lib\*.jnilib %_DEST%\lib\*.jnilib
-..\%__SRC%\lib\*.a %_DEST%\lib\*.a
-..\%__SRC%\slb\connectivity*.* %_DEST%\lib\connectivity*.*
-..\%__SRC%\lib\idbt* %_DEST%\lib\idbt*
-..\%__SRC%\lib\*.oxt %_DEST%\bin\*.oxt
-..\%__SRC%\bin\*.oxt %_DEST%\bin\*.oxt
-..\source\cpool\*.xml %_DEST%\xml\*.xml
-..\source\drivers\adabas\*.xml %_DEST%\xml\*.xml
-..\source\drivers\ado\*.xml %_DEST%\xml\*.xml
-..\source\drivers\tdeab\*.xml %_DEST%\xml\*.xml
-..\source\drivers\kab\*.xml %_DEST%\xml\*.xml
-..\source\drivers\macab\*.xml %_DEST%\xml\*.xml
-..\source\drivers\file\*.xml %_DEST%\xml\*.xml
-..\source\drivers\flat\*.xml %_DEST%\xml\*.xml
-..\source\drivers\dbase\*.xml %_DEST%\xml\*.xml
-..\source\drivers\jdbc\*.xml %_DEST%\xml\*.xml
-..\source\drivers\odbc\*.xml %_DEST%\xml\*.xml
-..\source\drivers\mozab\*.xml %_DEST%\xml\*.xml
-..\source\drivers\evoab2\*.xml %_DEST%\xml\*.xml
-..\source\drivers\calc\*.xml %_DEST%\xml\*.xml
-..\source\drivers\mysql\*.xml %_DEST%\xml\*.xml
-..\%__SRC%\class\*.jar %_DEST%\bin\*.jar
-
-mkdir: %_DEST%\xml\registry\spool\DataAccess
-
-..\%__SRC%\inc\sqlbison.hxx %_DEST%\inc\connectivity\sqlbison.hxx
-..\%__SRC%\misc\registry\data\org\openoffice\Office\DataAccess\*.xcu 
%_DEST%\xml\registry\spool\DataAccess\*.xcu
-..\%COMMON_OUTDIR%\bin\fcfg_drivers_*.zip %_DEST%\pck\fcfg_drivers_*.zip
-..\%__SRC%\bin\fcfg_drivers_*.zip %_DEST%\pck\fcfg_drivers_*.zip
-..\%__SRC%\misc\adabas.component %_DEST%\xml\adabas.component
-..\%__SRC%\misc\ado.component %_DEST%\xml\ado.component
-..\%__SRC%\misc\calc.component %_DEST%\xml\calc.component
-..\%__SRC%\misc\dbase.component %_DEST%\xml\dbase.component
-..\%__SRC%\misc\dbpool2.component %_DEST%\xml\dbpool2.component
-..\%__SRC%\misc\dbtools.component %_DEST%\xml\dbtools.component
-..\%__SRC%\misc\evoab.component %_DEST%\xml\evoab.component
-..\%__SRC%\misc\flat.component %_DEST%\xml\flat.component
-..\%__SRC%\misc\hsqldb.component %_DEST%\xml\hsqldb.component
-..\%__SRC%\misc\jdbc.component %_DEST%\xml\jdbc.component
-..\%__SRC%\misc\tdeab1.component %_DEST%\xml\tdeab1.component
-..\%__SRC%\misc\kab1.component %_DEST%\xml\kab1.component
-..\%__SRC%\misc\macab1.component %_DEST%\xml\macab1.component
-..\%__SRC%\misc\mozab.component %_DEST%\xml\mozab.component
-..\%__SRC%\misc\mozbootstrap.component %_DEST%\xml\mozbootstrap.component
-..\%__SRC%\misc\mysql.component %_DEST%\xml\mysql.component
-..\%__SRC%\misc\odbc.component %_DEST%\xml\odbc.component
-..\%__SRC%\misc\sdbc2.component %_DEST%\xml\sdbc2.component
-
-..\%__SRC%\misc\postgresql-sdbc.rdb %_DEST%\xml\postgresql-sdbc.rdb
-..\source\drivers\postgresql\postgresql-sdbc.ini 
%_DEST%\bin\postgresql-sdbc.ini
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: [PATCH] fdo#34772 Word count / statistics in the status bar

2012-05-26 Thread Ivan Timofeev

Hi all,

this patch makes scrolling in writer impossible :( it always brings the 
view back to the cursor (btw so does Tools - Word Count, but only once 
it is invoked).


It looks like the cause is the following lines:

@@ -1197,6 +1198,25 @@ void SwView::StateStatusLine(SfxItemSet rSet)
 }
 }
 break;
+
+case FN_STAT_WORDCOUNT:
+{
+SwDocStat selectionStats;
+SwDocStat documentStats;
+{
+SwWait aWait( *GetDocShell(), sal_True );
+rShell.StartAction();
+rShell.CountWords(selectionStats);
+documentStats = rShell.GetUpdatedDocStat();
+rShell.EndAction();
+}
+rSet.Put(SfxStringItem(FN_STAT_WORDCOUNT, 
rtl::OUStringBuffer(Words: )
+ 
.append(rtl::OUString::valueOf(static_castsal_Int64(selectionStats.nWord)))

+.append('/')
+ 
.append(rtl::OUString::valueOf(static_castsal_Int64(documentStats.nWord))).makeStringAndClear()));

+}
+break;


Any idea? How to count words without changing a viewpoint?

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


[Libreoffice-commits] .: Branch 'feature/gbuild_merge' - connectivity/Library_postgresql-sdbc-impl.mk

2012-05-26 Thread David Ostrovsky
 connectivity/Library_postgresql-sdbc-impl.mk |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 7eccbbb6a94a7eef64f4a0ba5eaba3e3e25231ed
Author: David Ostrovsky david.ostrov...@gmx.de
Date:   Sat May 26 20:55:40 2012 +0200

dl library added

Change-Id: I9afb1e2cd82ab02c456735282a6ef0b0be15cfbc

diff --git a/connectivity/Library_postgresql-sdbc-impl.mk 
b/connectivity/Library_postgresql-sdbc-impl.mk
index 9de5dc4..b634b58 100644
--- a/connectivity/Library_postgresql-sdbc-impl.mk
+++ b/connectivity/Library_postgresql-sdbc-impl.mk
@@ -58,6 +58,7 @@ include $(OUTDIR_FOR_BUILD)/inc/postgresql/libpq-flags.mk
 $(eval $(call gb_Library_add_libs,postgresql-sdbc-impl,\
$(if $(filter-out MACOSX,$(OS)),-Wl,--as-needed) \
$(LIBPQ_DEP_LIBS) \
+   $(if $(filter-out MACOSX,$(OS)),-ldl) \
$(if $(filter-out MACOSX,$(OS)),-Wl,--no-as-needed) \
 ))
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: [PATCH] fdo#34772 Word count / statistics in the status bar

2012-05-26 Thread Ivan Timofeev

On 26.05.2012 22:06, Ivan Timofeev wrote:

this patch makes scrolling in writer impossible :( it always brings the
view back to the cursor


Oops, wait. That happens only if a document contains the Page Count 
field (Insert - Fields - Page Count). WTF? Why it causes a recount 
every second?...


So this is a bug in Writer, not in this patch... Will file it / poke 
about in bugzilla.


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


Re: [PATCH] Don't make tab headers bold by default

2012-05-26 Thread Stefan Knorr (Astron)
Hi Norbert,

thanks... here's an updated version.

Astron.


0001-Use-normal-font-in-tab-headers.patch
Description: Binary data
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] .: Branch 'feature/gbuild_merge' - 5 commits - Makefile.top RepositoryExternal.mk shell/CustomTarget_shlxthdl_res.mk solenv/gbuild testtools/CustomTarget_bridgetest_climaker.mk t

2012-05-26 Thread Matus Kukan
 Makefile.top  |2 +-
 RepositoryExternal.mk |4 ++--
 shell/CustomTarget_shlxthdl_res.mk|2 +-
 solenv/gbuild/InstallModuleTarget.mk  |5 +
 testtools/CustomTarget_bridgetest.mk  |   25 +++--
 testtools/CustomTarget_bridgetest_climaker.mk |2 +-
 6 files changed, 13 insertions(+), 27 deletions(-)

New commits:
commit c774d2bea6f0549d09b04d288505371011bb4633
Author: Matúš Kukan matus.ku...@gmail.com
Date:   Sat May 26 23:47:05 2012 +0200

scp2: fix Windows build

Change-Id: I6662bfca925f9dae99b3f70fd81dba04d36ac9c8

diff --git a/solenv/gbuild/InstallModuleTarget.mk 
b/solenv/gbuild/InstallModuleTarget.mk
index db8aa61..1b717a7 100644
--- a/solenv/gbuild/InstallModuleTarget.mk
+++ b/solenv/gbuild/InstallModuleTarget.mk
@@ -73,15 +73,12 @@ endef
 
 # ScpPreprocessTarget class
 
-gb_ScpPreprocessTarget_TARGET := $(call 
gb_Executable_get_target_for_build,cpp.lcc)
-gb_ScpPreprocessTarget_COMMAND := $(gb_Helper_set_ld_path) 
$(gb_ScpPreprocessTarget_TARGET)
-
 gb_ScpPreprocessTarget_get_source = $(SRCDIR)/$(1).scp
 
 define gb_ScpPreprocessTarget__command
 $(call gb_Output_announce,$(2),$(true),SPP,2)
 $(call gb_Helper_abbreviate_dirs,\
-   $(gb_ScpPreprocessTarget_COMMAND) \
+   $(call gb_Helper_execute,cpp.lcc) \
-+ -P \
$(SCPDEFS) $(SCP_DEFS) -DDLLPOSTFIX=$(gb_Library_DLLPOSTFIX) \
$(SCP_INCLUDE) $(SCP_TEMPLATE_INCLUDE) \
commit 46a222798acfc508e10ddb8ff470771eabbf8b3c
Author: Matúš Kukan matus.ku...@gmail.com
Date:   Sat May 26 23:38:34 2012 +0200

pq's name is different on Windows

Change-Id: I63731a1114edcf60a19083e6ceafaae1b402e716

diff --git a/RepositoryExternal.mk b/RepositoryExternal.mk
index b1c1f11..25a6749 100644
--- a/RepositoryExternal.mk
+++ b/RepositoryExternal.mk
@@ -1281,7 +1281,7 @@ $(call gb_LinkTarget_set_include,$(1),\
 )
 
 $(call gb_LinkTarget_use_static_libraries,$(1),\
-   pq \
+   $(if $(filter MSC,$(COM)),lib)pq \
 )
 
 ifeq ($(GUI)$(COM),WNTMSC)
@@ -1296,7 +1296,7 @@ endif
 endef
 
 $(eval $(call gb_Helper_register_static_libraries,PLAINLIBS,\
-   pq \
+   $(if $(filter MSC,$(COM)),lib)pq \
 ))
 
 endif # SYSTEM_POSTGRESQL
commit a2dc0d67c4fcd25510a497b45c5dfe37df5208fe
Author: Matúš Kukan matus.ku...@gmail.com
Date:   Sat May 26 23:12:53 2012 +0200

shell is gbuildified

Change-Id: Ia40e317a69883c578a349035604afb5a5dad4c86

diff --git a/Makefile.top b/Makefile.top
index 5bd62f0..192ddbd 100644
--- a/Makefile.top
+++ b/Makefile.top
@@ -111,6 +111,7 @@ scripting\
 sd\
 sdext\
 sfx2\
+shell\
 slideshow\
 smoketest\
 solenv\
@@ -231,7 +232,6 @@ remotebridges\
 rhino\
 saxon\
 setup_native\
-shell\
 soltools\
 stax\
 stlport\
commit 70477ab82e2d7657f7aed527649d89d9a5d4cff7
Author: Matúš Kukan matus.ku...@gmail.com
Date:   Sat May 26 22:41:54 2012 +0200

testttools: tweak makefiles, fix typos

Change-Id: I4e7c7f2d79641772479924f8efc479beaf137f8f

diff --git a/testtools/CustomTarget_bridgetest.mk 
b/testtools/CustomTarget_bridgetest.mk
index a4237d3..473613d 100644
--- a/testtools/CustomTarget_bridgetest.mk
+++ b/testtools/CustomTarget_bridgetest.mk
@@ -43,14 +43,12 @@ bridgetest_TARGET := 
$(workdir_SERVER)/bridgetest_server$(BATCH_SUFFIX) \
 ifneq ($(SOLAR_JAVA),)
 bridgetest_TARGET := $(bridgetest_TARGET) \
$(workdir_SERVER)/bridgetest_javaserver$(BATCH_SUFFIX) \
-   $(workdir_SERVER)/bridgetest_inprocess_java(BATCH_SUFFIX)
+   $(workdir_SERVER)/bridgetest_inprocess_java$(BATCH_SUFFIX)
 endif
 
 $(call gb_CustomTarget_get_target,testtools/bridgetest) : $(bridgetest_TARGET)
 
-# which other prerequisites do we need here?
-$(workdir_SERVER)/bridgetest_server$(BATCH_SUFFIX) : \
-   $(SRCDIR)/testtools/source/bridgetest/*.component | 
$(workdir_SERVER)/.dir
+$(workdir_SERVER)/bridgetest_server$(BATCH_SUFFIX) :| $(workdir_SERVER)/.dir
$(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),ECH,1)
$(call gb_Helper_abbreviate_dirs,\
echo $(UNO_EXE) \
@@ -62,26 +60,20 @@ $(workdir_SERVER)/bridgetest_server$(BATCH_SUFFIX) : \
--singleaccept  $@)
$(GIVE_EXEC_RIGHTS) $@
 
-ifneq ($(SOLAR_JAVA),)
 
-# how to do it more elegantly?
-MY_CLASSPATH := 
$(OUTDIR)/bin/ridl.jar$(gb_CLASSPATHSEP)$(OUTDIR)/bin/java_uno.jar$(gb_CLASSPATHSEP)$(OUTDIR)/bin/jurt.jar$(gb_CLASSPATHSEP)$(OUTDIR)/bin/juh.jar
+testtools_MY_CLASSPATH := 
$(OUTDIR)/bin/ridl.jar$(gb_CLASSPATHSEP)$(OUTDIR)/bin/java_uno.jar$(gb_CLASSPATHSEP)$(OUTDIR)/bin/jurt.jar$(gb_CLASSPATHSEP)$(OUTDIR)/bin/juh.jar
 
-# which other prerequisites do we need here?
-$(workdir_SERVER)/bridgetest_javaserver$(BATCH_SUFFIX) : \
-   $(SRCDIR)/testtools/source/bridgetest/*.component | 
$(workdir_SERVER)/.dir
+$(workdir_SERVER)/bridgetest_javaserver$(BATCH_SUFFIX) :| 
$(workdir_SERVER)/.dir
$(call 

[Libreoffice-commits] .: Branch 'feature/gbuild_merge' - RepositoryExternal.mk solenv/gbuild

2012-05-26 Thread Matus Kukan
 RepositoryExternal.mk   |3 ++-
 solenv/gbuild/platform/WNT_INTEL_MSC.mk |1 -
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit c7c7f8eafdd026a10190f25be52108d456d174db
Author: Matúš Kukan matus.ku...@gmail.com
Date:   Sun May 27 00:21:12 2012 +0200

no openssl library on Windows

Change-Id: I40df9611be87830e4938ee20a4e3be19767ddfad

diff --git a/RepositoryExternal.mk b/RepositoryExternal.mk
index 25a6749..b38b038 100644
--- a/RepositoryExternal.mk
+++ b/RepositoryExternal.mk
@@ -1285,8 +1285,9 @@ $(call gb_LinkTarget_use_static_libraries,$(1),\
 )
 
 ifeq ($(GUI)$(COM),WNTMSC)
+$(call gb_LinkTarget_use_external,$(1),openssl)
+
 $(call gb_LinkTarget_use_libraries,$(1),\
-   openssl \
secur32 \
ws2_32 \
$(if $(filter YES,$(WITH_LDAP)),ldap) \
diff --git a/solenv/gbuild/platform/WNT_INTEL_MSC.mk 
b/solenv/gbuild/platform/WNT_INTEL_MSC.mk
index fb833f7..3882327 100644
--- a/solenv/gbuild/platform/WNT_INTEL_MSC.mk
+++ b/solenv/gbuild/platform/WNT_INTEL_MSC.mk
@@ -407,7 +407,6 @@ gb_Library_PLAINLIBS_NONE += \
$(gb_Library_win32_OLDNAMES) \
ole32 \
oleaut32 \
-   openssl \
propsys \
secur32 \
shell32 \
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: feature/gbuild_merge needs testing

2012-05-26 Thread Matúš Kukan
On 26 May 2012 06:25, David Tardon dtar...@redhat.com wrote:
 On Fri, May 25, 2012 at 12:43:45PM -0500, Norbert Thiebaud wrote:
 On Fri, May 25, 2012 at 11:58 AM, Norbert Thiebaud nthieb...@gmail.com 
 wrote:
  On Fri, May 25, 2012 at 11:05 AM, Matúš Kukan matus.ku...@gmail.com 
  wrote:
  On 25 May 2012 14:20, Noel Grandin n...@peralex.com wrote:
  Build error log attached for a cygwin build (i.e. on Windows).
 
  I've ignored testtools, it needs more love.
 
  Then I've just removed unregistered libraries from RepositoryExternal.mk 
  : 1288
  to see the linking fail.
 
  And after 
  http://cgit.freedesktop.org/libreoffice/core/commit/?h=feature/gbuild_mergeid=cd3559f0b2483fa6655df5711ae207853f7ce8ee

 actually that one was fixed with
 87f63318d858aaa81836a8406d23a77442973c0f in gbuild_scp2

 It seems there are some missing patches...

 I've cherry picked them and is running a MacOSX test...

 Thanks. I wonder where I lost them...


It's getting better but still not complete.
At least scp2 and reportbuilder builds now on Windows.

Problems:
shell - missing exported symbols in ooofilt library from
shell/source/win32/shlxthandler/ooofilt/exports.dxp
Something like 156202b06270a90a4b73370d04401486145076d2 could help.

testtools - CustomTarget_bridgetest_climaker.mk
error: .NET exception occured: System.AccesViolationException:
Attempted to read or write protected memory. This is often an
indication that other memory is corrupt.
at ?A0x393b8821.sal_main()

no idea ^

connectivity - unresolved symbol __imp__SHGetFolderPath in
Library_postgresql-sdbc-impl.mk

I will continue later if nobody will fix these, though I should prolly
do something else.

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


[Libreoffice-commits] .: Branch 'feature/gbuild_merge' - testtools/CustomTarget_bridgetest_climaker.mk

2012-05-26 Thread Matus Kukan
 testtools/CustomTarget_bridgetest_climaker.mk |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 32615a6be25f5ba08c204bc75e69e6de0efee535
Author: Matúš Kukan matus.ku...@gmail.com
Date:   Sun May 27 00:43:26 2012 +0200

testtools: superfluous dependency

Change-Id: Id57d40f2b6cdaa9934a885764d986d581d149a59

diff --git a/testtools/CustomTarget_bridgetest_climaker.mk 
b/testtools/CustomTarget_bridgetest_climaker.mk
index b66d8a3..56c7f79 100644
--- a/testtools/CustomTarget_bridgetest_climaker.mk
+++ b/testtools/CustomTarget_bridgetest_climaker.mk
@@ -31,7 +31,7 @@ climaker_DIR := $(call 
gb_CustomTarget_get_workdir,testtools/bridgetest_climaker
 $(call gb_CustomTarget_get_target,testtools/bridgetest_climaker) : \
$(climaker_DIR)/cli_types_bridgetest.dll
 
-$(climaker_DIR)/cli_types_bridgetest.dll : $(OUTDIR)/bin/bridgetest.rdb \
+$(climaker_DIR)/cli_types_bridgetest.dll : \
$(OUTDIR)/bin/types.rdb $(OUTDIR)/bin/cli_uretypes.dll \
$(call gb_Executable_get_target_for_build,climaker) | 
$(climaker_DIR)/.dir
$(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),CLM,1)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: http://openoffice.org/bugzilla/show_bug.cgi?id=3959 -- Outline view

2012-05-26 Thread Donald Murray
Caolán McNamara caolanm@... writes:

 
 On Sat, 2011-03-05 at 02:50 -0500, Marc Paré wrote:
  I am just re-reading my to-do list of LibreOffice in Academia and one of 
  the oldest feature request is this one. I believe 8 years in request. Do 
  you think that this feature request will ever have a chance at being 
  accepted?
 
 As with anything, someone needs to actually do it. There are gadzillions
 of requests for implementation of things, so if you're in a position to
 have a stab at it, then that's the thing to try and do. Even a partial
 starter implementation is likely sufficient to get the ball rolling on
 any particular topic.
 
 C.
 
 

Outlining is the most commonly quoted reason for people not giving up using 
MSWORD. It really is that important. In any forum where this subject is brought 
up, there are loads of responses from people who say the same thing. I can't 
really switch from MSWORD until Outline view is added. and no, the 
navigator 
in Libre office doesn't even come close to doing what Outline view does in 
MSWORD. I believe this is a feature, that when implemented, will causes 
thousands of people to switch to linux full timepretty much immediately. In 
fact, many are just waiting for that feature.
I filed several bugs for this in OOffice, and every time was able to present 
enough evidence as to the demand for this feature. Then, they'd assign it to 
someone who had never used MSWORD, and then, this person would see that there 
were several bugs related to this feature and say this was already dealt with 
in bug xyz, which of course it wasn't. So, it's like walking in a red-tape 
circle where nothing ever can get done related to it.
Just accept it.MSOFFICE is superior in every way to Libre and OOffice 
because of the lack of Outline view in the word processor.
The features wanted are:
1. Outline numbering.
2. Collapsing and expanding of text inside headers at any level specified.
3. Single buttons to demote and promote a header withing the outline view.
4. Table of contents generation from the outline view.

Thank you
-Donald



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


Re: Need hint about finding the relevant code in chart2

2012-05-26 Thread walt
On 05/25/2012 08:22 AM, Kohei Yoshida wrote:
 Hi Walt,
 
 On Fri, May 25, 2012 at 9:00 AM, walt w41...@gmail.com wrote:
 
 I need to find the code that parses my choice of Data Ranges for
 the horizontal axis of a stock chart -- and now refuses to let me
 do what I've always done -- leave blank space at the right end of
 the chart, to allow for fresh samples to be added each day as I get
 them.
 
 I assume you are doing this in Calc?  If yes, then the code that
 handles data range parsing is actually not in chart2, but in sc.  Go
 search for chart2uno.hxx and chart2uno.cxx inside sc, and that's
 probably the code you are looking for.

Thank you!  I could never find that code without your help.

I was hoping that my patch (below) would fix my problem while honoring
the spirit of your code, but it turns out to have no effect at all,
either good or bad.

I hope you can see what I was trying to do and explain why it fails.

Keep in mind that I'm not a c(++) programmer, so my error might be as
trivial as incorrect syntax.  (I can't afford the hours it took me to
test the patch, just to experiment with syntax :)

Many thanks!

diff --git a/sc/source/ui/unoobj/chart2uno.cxx 
b/sc/source/ui/unoobj/chart2uno.cxx
index 03028fc..2060b5a 100644
--- a/sc/source/ui/unoobj/chart2uno.cxx
+++ b/sc/source/ui/unoobj/chart2uno.cxx
@@ -1426,8 +1426,8 @@ public:
 s.nCol = nMinCol;
 if (s.nRow  nMinRow)
 s.nRow = nMinRow;
-if (e.nCol  nMaxCol)
-e.nCol = nMaxCol;
+if (e.nCol  nMaxCol + 100)
+e.nCol = nMaxCol + 100;
 if (e.nRow  nMaxRow)
 e.nRow = nMaxRow;
 }




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


[Libreoffice-bugs] [Bug 46577] LibreOffice 3.5 crashes on latest MacOSX Lion when saving large FODT/DOC to MS Office 2007/2010 DOCX format

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46577

--- Comment #3 from Rees kwarterthie...@yahoo.com 2012-05-25 23:19:00 PDT ---
Created attachment 62121
  -- https://bugs.freedesktop.org/attachment.cgi?id=62121
Newer stacktrace

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 46577] LibreOffice 3.5 crashes on latest MacOSX Lion when saving large FODT/DOC to MS Office 2007/2010 DOCX format

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46577

--- Comment #4 from Rees kwarterthie...@yahoo.com 2012-05-25 23:20:00 PDT ---
Just tried it and it did the same thing for 3.5.3.2.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 46577] LibreOffice 3.5 crashes on latest MacOSX Lion when saving large FODT/DOC to MS Office 2007/2010 DOCX format

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46577

--- Comment #5 from sasha.libreoff...@gmail.com 2012-05-25 23:20:43 PDT ---
Thanks for additional testing

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 46577] LibreOffice 3.5 crashes on latest MacOSX Lion when saving large FODT/DOC to MS Office 2007/2010 DOCX format

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46577

Rees kwarterthie...@yahoo.com changed:

   What|Removed |Added

   Platform|Other   |x86-64 (AMD64)
 OS/Version|All |Mac OS X (All)
Version|LibO 3.5.0 Release  |LibO 3.5.3 release

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 49706] Find Toolbar does not retrieve text from clipboard

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49706

--- Comment #9 from Roman Eisele b...@eikota.de 2012-05-26 01:40:50 PDT ---
(In reply to comment #8)
 Correct me if I'm wrong but it seems like Andras and Roman's queries are
 different.
 
 Andras, I believe, is asking for an improvement, namely that the Find box
 should be automatically populated with the content of the clipboard [...]
 
 Roman, on the other experiences a bug, where trying to paste content in the
 Find box results in content being pasted in the main document instead. [...]

Thank you, Florent --
you are completely right. Oh no! How could I miss that (little but important)
difference?! I'm sorry, I have totally mixed these two issues.

@Andras:
Sorry for this disorder! How should we proceed now? We need to separate these
two issues again, but I can't delete the entries belonging from my bug (and
bug 49853 and bug 49584, which are duplicates of my issue) from your bug
;-) So, I can copy my notes to bug 49853, which has a reasonable description
and therefore is a good base for my iusse, but I can't clean your issue
again, sorry sorry sorry. Maybe you would like to/should file a new bug for
your iusse, and then we should close this messed up report and just insert a
final comment hinting to the two new (separated) bug reports?! Sorry again!

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 50368] EDITING: make a line with - Signs at the end can not be reoved anymore and duplicated

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50368

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

   What|Removed |Added

 OS/Version|All |Linux (All)
 Status|UNCONFIRMED |NEW
 CC||LibreOffice@bielefeldundbus
   ||s.de
 Ever Confirmed|0   |1

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2012-05-26 01:46:33 PDT ---
Sounds like a user error, I can't see any real problem with LibreOffice
3.5.4.2 (RC2) German UI/Locale [Build-ID:
165a79a-7059095-e13bb37-fef39a4-9503d18] on German WIN7 Home Premium (64bit) 

@reporter:
Thank you for your report – unfortunately important information is missing.
May be hints on http://wiki.documentfoundation.org/BugReport will help you to
find out what information will be useful to reproduce your problem? If you
believe that that  is really sophisticated please as for Help on a user mailing
list
Please:
- Write a meaningful Summary describing exactly what the problem is
  (Is your problem really related to those autoformat horizontal line 
  or also risible for a horizontal line Created with menu
  'Insert - Horizaontal line'?)
- Attach a sample document (not only screenshot) or refer to an existing 
  sample document in an other Bug with a link.
- Attach screenshots with comments if you believe that that might explain the 
  problem better than a text comment. Best way is to insert your screenshots
  into a DRAW document and to add comments that explain what you want to show
- Contribute a document related
  step by step instruction containing every key press and every 
  mouse click how to reproduce your problem (due to example in Bug 43431)
– if possible contribute an instruction how to create a sample document 
  from the scratch
- add information 
  -- what EXACTLY is unexpected (see above)
  -- and WHY do you believe it's unexpected (cite Help or Documentation!)
  -- concerning your PC 
  -- concerning your OS (Language)
  -- concerning your LibO version (with Build ID if it's not a public release)
 and localization (UI language, Locale setting)
  –- Libo settings that might be related to your problems 
  -- how you launch LibO and how you opened the sample document
  -- everything else crossing your mind after you read linked texts

Even if you can not provide all demanded information, every little new
information might bring the breakthrough.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 50364] SLIDESHOW: no custom animation for Semitransparent lines

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50364

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

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Status Whiteboard|BSA |BSA (target:3.5.4)
 Resolution||WORKSFORME
 CC||LibreOffice@bielefeldundbus
   ||s.de
Summary|SLIDESHOW: Semitransparent  |SLIDESHOW: no custom
   |lines do not animate|animation for
   ||Semitransparent lines

--- Comment #2 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2012-05-26 01:59:15 PDT ---
NOT reproducible with reporter's sample and LibreOffice 3.5.4.2 (RC2) German
UI/Locale [Build-ID: 165a79a-7059095-e13bb37-fef39a4-9503d18] on German WIN7
Home Premium (64bit)

But was [Reproducible] with LibreOffice 3.5.2.2 German UI/Locale [Build-ID:
281b639-6baa1d3-ef66a77-d866f25-f36d45f] on German WIN7 Home Premium (64bit) 
and also with LibreOffice 3.5.3.1 German UI/Locale [Build-ID:
21cb047-d7e6025-9ba54fc-b4a51a8-f42372b] on German WIN7 Home Premium (64bit) 

So I assume problem has become somehow fixed for 3.5.4

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 47416] context menu, Font host at max 100 fonts

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=47416

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

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||DUPLICATE
 CC||courrier.oou.fr.mjk@googlem
   ||ail.com

--- Comment #3 from manj_k courrier.oou.fr@googlemail.com 2012-05-26 
02:16:15 PDT ---
Already reported as 'Bug 34085 - [EDITING] [UI] List of fonts incomplete in
context menu'.

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

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 50183] CONFIGURATION: Default number of sheets for new document should be 1

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50183

Astron heinzless...@gmail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #3 from Astron heinzless...@gmail.com 2012-05-26 02:34:09 PDT ---
Closing as fixed, see above.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 38262] Outline View (aka MS Word)

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38262

mar...@kotsbak.com changed:

   What|Removed |Added

 CC||mar...@kotsbak.com

--- Comment #4 from mar...@kotsbak.com 2012-05-26 03:03:44 PDT ---
I suggest that someone set up and add an amount on a bounty site like
http://www.fossfactory.org/ I guess several people would be interested in
paying someif this was implemented.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 50369] New: : Formula function LOOKUP() does not work properly

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50369

 Bug #: 50369
   Summary: : Formula function LOOKUP() does not work properly
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.5.3 release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Spreadsheet
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: jokusoftw...@gmail.com


Created attachment 62122
  -- https://bugs.freedesktop.org/attachment.cgi?id=62122
A sample workbook to demonstrate the issue.

Problem description: 
The LOOKUP() function does not lookup all cells properly: N/A is returned.

Steps to reproduce:
1. Create two data columns
2. Fill in LOOKUP() formulas
3. Copy one column data to lookup the other column's data

Current behavior:
Several rows contain N/A.

Expected behavior:
Second calculated column should be identical to the second data column.

Platform (if different from the browser): 
Windows XP SP3

Browser: Mozilla/5.0 (Windows NT 5.1; rv:12.0) Gecko/20100101 Firefox/12.0

Note:
I have tested this on original OO 3.2.1 release and the behavior is the same,
so I believe it is a bug inherited from OO.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 50369] : Formula function LOOKUP() does not work properly

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50369

Joe jokusoftw...@gmail.com changed:

   What|Removed |Added

   Priority|medium  |high

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 50368] EDITING: make a line with - Signs at the end can not be reoved anymore and duplicated

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50368

--- Comment #2 from Alex a...@inetw.de 2012-05-26 04:59:09 PDT ---
I guess it is not a user error!
Here is the Video how it appears.
http://youtu.be/pQ2gnMRYXIw
I am using LibreOffice on Ubuntu (64bit) not on Windows 7

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43489] [Task] Incorrect behavior using existing User Profile for upgrade

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43489

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

   What|Removed |Added

   Platform|Other   |All
 Status|UNCONFIRMED |NEW
 CC||b...@eikota.de
 Ever Confirmed|0   |1

--- Comment #4 from Roman Eisele b...@eikota.de 2012-05-26 06:53:06 PDT ---
(IMHO Status field should be set to 'NEW', just like in other Meta issues ...)

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 50371] New: CONFIGURATION: JRE 7.x incompatibility not resolved

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50371

 Bug #: 50371
   Summary: CONFIGURATION: JRE 7.x incompatibility not resolved
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.5.4 RC2
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: UI
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: hermannmuck...@gmail.com


Problem description: 

The known issue with JRE 7.x is still present with LibO 3.4.5 RC2 and JRE
1.7.0_04. JRE 1.6.0_32 works fine.

Steps to reproduce:
1. Install JRE 1.7.0_04
2. Install JRE 1.6.0_32
3. Activate either  load any document

Current behavior: With JRE 1.7.0_04, error msg JRE not installed or JRE
corrupted when opening odt in Writer; can be clicked away but there's no Java
functionality. odb files open in Base but no tables, queries ect. can be
accessed, error msg No JRE

Expected behavior: With JRE 1.6.0_32 everything works.

Platform (if different from the browser): Win7 Pro 64

Browser: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:12.0) Gecko/20100101
Firefox/12.0

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 50368] EDITING: make a line with - Signs at the end can not be reoved anymore and duplicated

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50368

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

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||NOTABUG

--- Comment #3 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2012-05-26 07:58:15 PDT ---
Not a bug!

@Alex
You might await that Insert Horizontal Line really inserts some object, but
that's not true. That action only adds a border below the paragraph, what you
can see easily clicking into the line with the xxx (in reporter's example)
and then using menu 'Format - Paragraph - borders'. You will see a border
below paragraph.
That can be removed easily changing line style to none in this dialog or
using menu 'Format - Clear direct formatting'.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 50371] CONFIGURATION: JRE 7.x incompatibility not resolved

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50371

Hermann Mucke hermannmuck...@gmail.com changed:

   What|Removed |Added

   Platform|Other   |x86-64 (AMD64)
 OS/Version|All |Windows (All)
   Severity|normal  |critical
   Priority|medium  |high
   See Also||https://bugs.freedesktop.or
   ||g/show_bug.cgi?id=44679

--- Comment #1 from Hermann Mucke hermannmuck...@gmail.com 2012-05-26 
07:58:57 PDT ---
Forces users to keep outdated  unsafe JRE6 even if other applications work
fine with JRE7. Less proficient users are likely to suppose LibreOffice is
broken if it stops working after JRE upgrade.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 45830] Language/User Interface: current choice indicated as default

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45830

--- Comment #2 from Rob Snelders programm...@ertai.nl 2012-05-26 08:29:15 PDT 
---
It is not that hard. But the function on
/core/i18npool/source/isolang/mslangid.cxx:92 (getRealLanguage) will need to be
duplicated and changed so you can hard select the system-language from
/core/svx/source/dialog/langbox.cxx:352 (ImplInsertLanguage). I'll ask the
usability-list first if this is the wanted behavior.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 45830] Language/User Interface: current choice indicated as default

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45830

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

   What|Removed |Added

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

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 49853] EDITING: Cannot paste into 'find' box (OS X)

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49853

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

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|DUPLICATE   |
 Ever Confirmed|0   |1
  Component|Spreadsheet |UI

--- Comment #4 from Roman Eisele b...@eikota.de 2012-05-26 08:32:22 PDT ---
Please forget my comment #2, it was a mistake: bug 49706 is, of course, very
similar, but still a mistake. Sorry! Therefore I REOPEN this bug report and add
here all information which has been collected in between:


(I) This bug affects not only Calc (for Calc, see original description), but
also Writer (therefore I change the Component field to UI). To reproduce it,
use the following steps:

1) Copy some text to the clipboard.
2) Start LibreOffice.
3) Open a Writer document (.odt)
4) Press Cmd+F (= Ctrl+F for Windows): Find.
5) The Find toolbar appears and gets the focus; the curser is blinking inside
the find edit field.
6) Press Cmd+V (= Ctrl+V for Windows): Paste.

Expected behaviour: The text copied in step (1) is pasted into the Find edit
field, because it has the focus.

Current behaviour: The text copied in step (1) is pasted somewhere into the
main text of the Writer document.


(II) This bug is REPRODUCIBLE on MacOS X (10.6.8, Intel Mac, German UI) with

1) LibreOffice 3.4.4, German langpack installed.
2) LibreOffice 3.5.3.2 (Build-ID: 235ab8a-3802056-4a8fed3-2d66ea8-e241b80),
German langpack installed.
3) LibreOffice 3.5.4.1 (Build-ID: 7306755-f4f605c-738527d-1cf4bc1-9930dc8),
German langpack installed.
4) LOdev 3.6.0alpha0+ (Build ID: 2398b9c; date: 2012-05-24),
US English langpack installed.

I don't have a copy of LibreOffice 3.4.0 around, but it seems probable that
this bug is present in LibreOffice for MacOS X since the new Find toolbar was
implemented.


(III) This bug is NOT REPRODUCIBLE with LibreOffice 3.5.3.2, German UI, on
Windows XP; in Writer and Calc everything works as expected (i.e., the edit
field of the Find toolbar gets the text from the clipboard if I press Ctrl+V).

Therefore, this bug seems to be MacOS X only.


(IV) TODO: Can someone please verify if the bug is present on Linux? There is
at least a similar, possibly somewhat related issue on Linux (bug 47634).

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 49584] paste in find tool, results in pasting in cell instead

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49584

--- Comment #4 from Roman Eisele b...@eikota.de 2012-05-26 08:35:02 PDT ---
Please forget my comment #2, it was a mistake: bug 49706 is, of course, very
similar, but still a mistake. Sorry!

But there is another bug report which exactly describes this present issue: bug
49853. Therefore I mark this bug report as a duplicate of bug 49853; please
refer to the latter for any further discussion.

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

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 49853] EDITING: Cannot paste into 'find' box (OS X)

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49853

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

   What|Removed |Added

 CC||yvan.wen...@unige.ch

--- Comment #5 from Roman Eisele b...@eikota.de 2012-05-26 08:35:02 PDT ---
*** Bug 49584 has been marked as a duplicate of this bug. ***

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 49706] Find Toolbar does not retrieve text from clipboard

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49706

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

   What|Removed |Added

 CC|angelica.cartwright@gmail.c |
   |om, yvan.wen...@unige.ch|

--- Comment #10 from Roman Eisele b...@eikota.de 2012-05-26 08:40:08 PDT ---
OK, I have moved the complete discussion about my issue (for the distincion,
see comment #8) to bug 49853. Any discussion about my issue should be
continued on the page for bug 49853, of course.

Therefore, PLEASE FORGET comment #1 to comment #7 -- sorry again for all the
confusion I have caused just by overseeing that little difference!

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 49706] Find Toolbar does not retrieve text from clipboard

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49706

--- Comment #11 from Roman Eisele b...@eikota.de 2012-05-26 08:53:35 PDT ---
But giving this discussion a new start,
I can also confirm Andras' original issue and description:


(In reply to comment #0)
 It is a very frequent use case, when I have a word to search for, I copy it
 with Ctrl+C, I press Ctrl+F and ... it is not in the edit box of Find Toolbar,
 I have to press Ctrl+V. It works with the old Find and Replace (Ctrl+H) 
 dialog.

REPRODUCIBLE on MacOS X 10.6.8 (Intel), German UI, with
* LibreOffice 3.4.4
* LibreOffice 3.5.3.2 (Build-ID: 235ab8a-3802056-4a8fed3-2d66ea8-e241b80)
* LOdev 3.6.0alpha0+ (Build ID: 2398b9c; date: 2012-05-24), US English langpack
installed. (Therefore I set the Version field again to 3.4.4 release.)

I don't have a copy of 3.4.0 around, but it seems probable that the current
behaviour is present since the implementation of the new Find toolbar.

The behaviour Andras describes is reproducible not only in Writer, but also in
Calc. (Therefore the Component setting UI seems most appropriate.)


It may be disputed, however, if this is a bug (because the old Find and
Replace dialog worked in the way expected by Andras and me), or an enhancement
request, as Florent suggests in his comment #8. But this is rather a question
of classification.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 50372] New: BASE SIGABRT: dereference a past-the-end iterator

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50372

 Bug #: 50372
   Summary: BASE SIGABRT: dereference a past-the-end iterator
Classification: Unclassified
   Product: LibreOffice
   Version: LibO Master
  Platform: Other
OS/Version: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Database
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: lo_b...@iseries-guru.com


Created attachment 62126
  -- https://bugs.freedesktop.org/attachment.cgi?id=62126
error message and backtrace

At the stage described in bug 47520 comment 3
https://bugs.freedesktop.org/show_bug.cgi?id=47520#c3 step 7, the
program issues message attempt to dereference a past-the-end
iterator and aborts.  The attached typescript shows the failure and
gdb backtrace.


I have built from master commit d015384, pulled 2012-05-20, configured
as ...
--disable-mozilla
--enable-symbols
--enable-dbgutil
--enable-crashdump
--disable-build-mozilla
--without-system-postgresql
--enable-debug
and running on ubuntu-natty (11.04).


Working backward in the code and gdb, I observe ...

(*) The dereference happens in OKeySet::refreshRow(), KeySet.cxx line
1338.  At this point, m_aKeyIter equals m_aKeyMap.end().  The
error message is true.

(*) m_aKeyIter became equal to m_aKeyMap.end() when
OKeySet::refreshRow(), KeySet.cxx line 1348 increamented the
iterator before the recursive call to OKeySet::refreshRow().
After line 1349 erases the previously addressed element of
m_aKeyMap, m_aKeyMap.size() is 2.


A couple of simple-minded hacks to the code ( early return from
recursive call to OKeySet::refreshRow(); decrementing instead of
incrementing the pointer before the recursive call ) merely defer the
crash to later in execution.  Guidance welcome.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 49853] EDITING: Cannot paste into 'find' box (OS X)

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49853

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

   What|Removed |Added

 CC||ke...@suse.cz,
   ||tbehr...@suse.com

--- Comment #6 from Roman Eisele b...@eikota.de 2012-05-26 09:03:27 PDT ---
@Kendy:
I add your mail address to the CC list because you are the original developer
of the new Find toolbar. It is a nice improvement, of course, thank you again!
But on MacOS X it suffers from this bug which makes it difficult to use the
Find toolbar (taking myself as an example, I often copy some text from the
document and then want to paste it into the Find edit field, which does
currently not work due to this bug). Therefore, it would be wonderful if you
could take a look at this issue ...

@Thorsten:
I add your mail address to the CC list because you are our MacOS expert, and
this bug seems to be a MacOS only issue. It would be very nice if you could
take a look at it!

Thank you both in advance!

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 46319] EDITING: text selection after shift-PgDn

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46319

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

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||b...@eikota.de
 Ever Confirmed|0   |1

--- Comment #2 from Roman Eisele b...@eikota.de 2012-05-26 09:20:24 PDT ---
NOT REPRODUCIBLE with LibreOffice 3.5.4.1 (Build-ID:
7306755-f4f605c-738527d-1cf4bc1-9930dc8), German langpack installed, on MacOS X
10.6.8 (Intel) German UI.

At least, I don't see Selection is lost. But I am not sure what the original
reporter exactly expects to happen ...


@micrond:
Thank you very much for your report! But I am not sure if I understand it
correctly. Could you please explain in more detail what you expect to happen?

Especially, what does 3. Continue selection on second page [...] mean? In
step (2), you say that only line 1 and 2 of the 1st page should be selected in
the beginning; but according to step (1) there are about 4 or 5 lines of text
on each page. So, does Continue selection on second page mean that you expect

a) that pressing Shift + Page down should select all remaining lines on page 1
(so that the complete text of page 1 should be selected) and move the cursor to
the 1st line of page 2?
b) that the selection remains restricted to line 1 and 2 of page 1, but that
another selection begins at the beginning of page 2?
c) that the complete text of page 1 and 2 is selected?
d) Or do you expect something else? And what exactly? Which lines of which
pages should be selected after step 3, and where do you expect the cursor to
be?

Sorry for asking so stupidly ;-) But without understanding exactly what you
expect we can't judge if there is really a bug, and if it is still present, or
if there is another issue ...

So thank you in advance for your answer!

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 50373] New: ACCESSIBILITY: Language selection

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50373

 Bug #: 50373
   Summary: ACCESSIBILITY: Language selection
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.5.3 release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: UI
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: ian.r...@mail.dk


Problem description: 
With non-English (DA) Vista OS,  LO nstalls in OS language, overriding user
selection.
Steps to reproduce:
1. 
2. 
3. 

Current behavior:

Expected behavior:

Platform (if different from the browser): 

Browser: Mozilla/5.0 (Windows NT 6.0; rv:12.0) Gecko/20100101 Firefox/12.0

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 45780] Accounting notation FORMATTING

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45780

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

   What|Removed |Added

   Severity|major   |enhancement

--- Comment #4 from Roman Eisele b...@eikota.de 2012-05-26 09:25:33 UTC ---
This is a feature/enhancement request, therefore changing the Importance field
accordingly.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 49533] Libreoffice needs double-entry accounting

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49533

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

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   Severity|normal  |enhancement
 Ever Confirmed|0   |1
Summary|: Libreoffice needs |Libreoffice needs
   |double-entry accounting |double-entry accounting

--- Comment #1 from Roman Eisele b...@eikota.de 2012-05-26 09:27:51 PDT ---
This is a feature/enhancement request, therefore changing the Importance field
accordingly.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 46488] PRINTING selected cells in a spreadsheet sheet impossible

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46488

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

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution||INVALID

--- Comment #5 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2012-05-26 10:00:29 PDT ---
Closing due to reporter's inactivity

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 49880] FILESAVE particular document terminates LibO

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49880

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

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution||INVALID

--- Comment #3 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2012-05-26 10:01:12 PDT ---
Closing due to reporter's inactivity

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 50376] New: Installer doesn't sort language correctly

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50376

 Bug #: 50376
   Summary: Installer doesn't sort language correctly
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.5.3 release
  Platform: Other
OS/Version: Windows (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Installation
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: dennisroc...@gmail.com


The Windows installer doesn't sort the languages correctly: German is
translated to 'Deutsch' (the German translation) and thus the sorting is
completely incorrect.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 50376] Installer doesn't sort language correctly

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50376

--- Comment #1 from Roczek dennisroc...@gmail.com 2012-05-26 10:12:19 PDT ---
oh, I missed to mention: this is (of course) in the list which directories
should be installed (in the custom part of the installation)

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 50377] New: EDITING: Undo don't work after drag and drop cell content

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50377

 Bug #: 50377
   Summary: EDITING: Undo don't work after drag and drop cell
content
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.5.3 release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Spreadsheet
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: fabio...@gmx.net


Problem description: 

Steps to reproduce:
1. fill a cell with text
2. drag and drop text from another cell
3. 
Current behaviour: In impossible to recover the text tha was in the cell where
you dropped the text from other text usin undo (ctrl+Z or undo icons)


Expected behaviour: with ctrl+z or undo icon the text the before was in the the
cell will be restored

Platform (if different from the browser): 

Browser: Mozilla/5.0 (Windows NT 6.0; rv:12.0) Gecko/20100101 Firefox/12.0

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 50377] EDITING: Undo don't work after drag and drop cell content

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50377

fabio...@gmx.net changed:

   What|Removed |Added

   Platform|Other   |x86 (IA32)
 OS/Version|All |Windows (All)

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 46071] EDITING: Math formula editing pane (Commands) does not appear

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46071

--- Comment #28 from Temachtiani cursosre...@gmail.com 2012-05-26 11:27:08 
PDT ---
In MacOS the problem is solved just deleting the file

Library/Application Support/LibreOffice/3/user/registrymodifications.xcu

From home User.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 46577] LibreOffice 3.5 crashes on latest MacOSX Lion when saving large FODT/DOC to MS Office 2007/2010 DOCX format

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46577

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

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||b...@eikota.de
 Ever Confirmed|0   |1

--- Comment #6 from Roman Eisele b...@eikota.de 2012-05-26 11:34:52 PDT ---
@Rees:
Thank you very much for your bug report and for your additional testing. Could
you attach the/a large FODT/DOC file which causes this crash? Without the
file, it is difficult to find out what exactly makes LibreOffice crash ...

(Not every big file makes LibreOffice crash when we save it in DOCX format, of
course; I can, for example, save the Word2007RTFSpec9.doc, a 12.5 MB .doc
file, from http://www.microsoft.com/en-us/download/details.aspx?id=10725,
without any problems in MS Office 2007/2010 DOCX format. Therefore, the file
size is probably not the [only] cause of the crash you see ...)

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 46577] LibreOffice 3.5 crashes on latest MacOSX Lion when saving large FODT/DOC to MS Office 2007/2010 DOCX format

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46577

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

   What|Removed |Added

Version|LibO 3.5.3 release  |LibO 3.5.0 Release

--- Comment #7 from Roman Eisele b...@eikota.de 2012-05-26 11:36:28 PDT ---
Reset the Version field to the original value (3.5.0 release); please note that
the Version field should contain the FIRST version which is known to contain
the problem, and NOT the last one ...

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 46226] Copying and Pasting makes font smaller

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46226

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

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||b...@eikota.de
 Ever Confirmed|0   |1

--- Comment #6 from Roman Eisele b...@eikota.de 2012-05-26 12:34:33 PDT ---
NOT REPRODUCIBLE with LibreOffice 3.5.4.1 (Build-ID:
7306755-f4f605c-738527d-1cf4bc1-9930dc8), German langpack installed, on MacOS X
10.6.8 German UI.

When I open the attached sample file and copy the text of any cell (Cmd+C) and
then try to paste it again and again (Cmd+V), the text is pasted at its
original size, just like expected ...

Hm. Maybe this bug has been fixed in between, or it is specific to MacOS 10.7
(but I can't imagine why), or ... some other special condition applies (but
which?).

@Markus Stadler:
Could you please try do download the current release of LibreOffice (3.5.2 --
or better, just wait some days and then download 3.5.4, which is coming soon
and contains many important bugfixes!) and then try again if your problem has
been fixed in between? That seems possible, as I can't reproduce it with my
3.5.4 RC 1 version, at least not on MacOS X 10.6.8 German. Thank you very much!

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 46226] Copying and Pasting makes font smaller

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46226

--- Comment #7 from Roman Eisele b...@eikota.de 2012-05-26 12:35:41 PDT ---
(In reply to comment #6)
 Could you please try do download the current release of LibreOffice (3.5.2 --

Typo: I mean 3.5.3, sorry! But indeed it may be a good idea to wait for 3.5.4.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 50344] Basic Macro will not run because of missing Java

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50344

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

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||courrier.oou.fr.mjk@googlem
   ||ail.com
 Ever Confirmed|0   |1

--- Comment #1 from manj_k courrier.oou.fr@googlemail.com 2012-05-26 
13:50:12 PDT ---
Error message reproducible (on WinXP 32b) w/
LibO-Dev_3.6.0alpha0
Win-x86@6-fast MASTER
pull time 2012-05-25 07:27:31
core:8ed3a427245a07bb787c521a178cfb421fa46854

Works fine w/
LibO-Dev_3.6.0alpha0
Win-x86@6-fast MASTER
pull time 2012-04-17 23:05:35
core:66974653c0635e9e13a277e22da33e7f2062e674
[JRE not avaible, and disabled]

Works fine w/
LibO 3.5.4 RC2
[JRE disabled]

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 50379] New: FORMATTING: page-anchored drawing objects get lost.

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50379

 Bug #: 50379
   Summary: FORMATTING: page-anchored drawing objects get lost.
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.3 release
  Platform: x86-64 (AMD64)
OS/Version: Windows (All)
Status: NEW
  Severity: normal
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: bram.way...@mail.utexas.edu


When a drawing object is anchored to a page, and a paragraph style that
specifies a page break is used earlier in the document, the drawing object's
anchor does not move with its page. Example: Let's say I have an 8-page
document, with a drawing object anchored to page 6, and I use a paragraph style
that includes a preceding page break on page 3. The document is now 9 pages
long, and the newly styled paragraph appears on page 4. But the drawing still
appears on page 6, while it should appear on what is now page 7. It should have
moved along with all the contents it shared that page with.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 50309] Libvisio: Multiple sheets from Visio do not import in the same order. Also, unexpected font color changes in import.

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50309

Valek Filippov f...@gnome.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||f...@gnome.org
 Ever Confirmed|0   |1

--- Comment #4 from Valek Filippov f...@gnome.org 2012-05-26 15:45:34 PDT ---
2 Ackbeet:

Solution is clear for page order.

For text clr I will check why it was overridden by black, no action is required
from you at the moment.

Of course if you want to contribute to LibreOffice, you are always welcome!

Check http://www.libreoffice.org/developers-2/ for ways to contribute.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 50380] New: FORMATTING: table of contents becomes corrupted.

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50380

 Bug #: 50380
   Summary: FORMATTING: table of contents becomes corrupted.
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.3 release
  Platform: x86-64 (AMD64)
OS/Version: Windows (All)
Status: NEW
  Severity: normal
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: bram.way...@mail.utexas.edu


If you try to apply a character style to the tab stop in a table of contents
entry, the tab stop stops functioning properly -- in fact, it disappears
completely. It cannot be restored without deleting the tab stop and recreating
it.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 50294] Spellcheck shouldn't trigger on case difference if first word of sentence/heading

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50294

--- Comment #4 from Jon Grossart j...@grossart.net 2012-05-26 20:53:36 PDT ---
Yes, it would seem to be a duplicate of the same issue.

However, it seems the other bug is being somewhat ignored/downplayed. I think
this is an important flaw/bug/enhancement toward making the daily use of LibO
to be better.

And, it would also bring another level of feature parity to MS Office (as you
only need to have the lowercase variant in the custom dictionary for the
spellcheck to pass).

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 50294] Spellcheck shouldn't trigger on case difference if first word of sentence/heading

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50294

Jon Grossart j...@grossart.net changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||DUPLICATE

--- Comment #5 from Jon Grossart j...@grossart.net 2012-05-26 20:54:24 PDT ---


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

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 37954] EDITING Writer AutoSpellcheck flags capitalized words as misspelled despite being added lowercase in the custom dictionary

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37954

--- Comment #10 from Jon Grossart j...@grossart.net 2012-05-26 20:54:24 PDT 
---
*** Bug 50294 has been marked as a duplicate of this bug. ***

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 50309] Libvisio: Multiple sheets from Visio do not import in the same order. Also, unexpected font color changes in import.

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50309

--- Comment #5 from Valek Filippov f...@gnome.org 2012-05-26 22:19:00 PDT ---
2 Fridrich/Tibby:

Colours for text/fill/stroke can be set (or locked to defaults) by layer.
libvisio needs to parse LayerIX chunk (probably only layers with
colour/transparency and visible flag are important at the moment) and
LayerMem chunk to apply layer props as required.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 50380] FORMATTING: table of contents becomes corrupted.

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50380

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

   What|Removed |Added

 Status|NEW |NEEDINFO
 CC||LibreOffice@bielefeldundbus
   ||s.de

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2012-05-26 22:35:56 UTC ---
NOT reproducible with LibreOffice 3.5.4.2 (RC2) German UI/Locale [Build-ID:
165a79a-7059095-e13bb37-fef39a4-9503d18] on German WIN7 Home Premium (64bit) 
Also not with 3.4.5

I created 2 small example tables 1 cell and 3x3, added tab stops to the cells
and some characters, applied striekthroug / bold - Drop Caps / strong emphases.
All wihout influence to tab stops

@reporter:
Thank you for your report – unfortunately important information is missing.
May be hints on http://wiki.documentfoundation.org/BugReport will help you to
find out what information will be useful to reproduce your problem? If you
believe that that  is really sophisticated please as for Help on a user mailing
list
Please:
- Write a meaningful Summary describing exactly what the problem is
- Attach a sample document (not only screenshot) or refer to an existing 
  sample document in an other Bug with a link.
- Attach screenshots with comments if you believe that that might explain the 
  problem better than a text comment. Best way is to insert your screenshots
  into a DRAW document and to add comments that explain what you want to show
- Contribute a document related step by step instruction containing 
  every key press and every 
  mouse click how to reproduce your problem (due to example in Bug 43431)
– if possible contribute an instruction how to create a sample document 
  from the scratch
- add information 
  -- what EXACTLY is unexpected
  -- and WHY do you believe it's unexpected (cite Help or Documentation!)
  -- concerning your PC 
  -- concerning your OS (Version, Distribution, Language)
  -- concerning your LibO version (with Build ID if it's not a public release)
 and localization (UI language, Locale setting)
  –- Libo settings that might be related to your problems 
(video hardware acceleration ...)
  -- how you launch LibO and how you opened the sample document
  -- everything else crossing your mind after you read linked texts

Even if you can not provide all demanded information, every little new
information might bring the breakthrough.

May be you can test https://www.libreoffice.org/get-help/bug/ for submitting
bug reports?

Please report Bugs with stats UNCONFIRMED

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 50379] FORMATTING: page-anchored drawing objects get lost.

2012-05-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50379

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2012-05-26 22:47:21 PDT ---
Created attachment 62129
  -- https://bugs.freedesktop.org/attachment.cgi?id=62129
Sample document

[Reproducible] with LibreOffice 3.5.4.2 (RC2) German UI/Locale [Build-ID:
165a79a-7059095-e13bb37-fef39a4-9503d18] on German WIN7 Home Premium (64bit)?

In attached sample document you have paragraph anchored drawings on pages 5,7,
and a drawing anchored to page on page 6.

After inserting a page break on page 3 you will see Drawings 5 and Page 6
both on page counted as 6. 

@reporter:
That is your problem?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


Re: [Libreoffice-ux-advise] Mirek's visit in SUSE :-)

2012-05-26 Thread Stefan Knorr (Astron)
Hi all,

  Here, I would like to propose two things:
  * make Insert mode harder to trigger, for instance, by having to use
  Shift+Ins (instead of just Ins)
  * remove the inidactor wholesale

 That is actually an interesting idea :-)  The cursor changes to a block
 one when the overwrite mode is activated, so together with making it
 harder to trigger, it might be OK.

 Anybody against this?


 I would prefer if the shortcut was kept as Insert, as that's the shortcut
 used by virtually every other application that allows overwrite mode.
 Also, could the cursor stay a block even at the end of the line, so that the
 user knows he's in overwrite mode?
 Alternatively, I've seen some applications use a red cursor instead of a
 block, which would be more effective at communicating to the user that he's
 in overwrite mode.

Right, so I've looked around a bit on the internets/in LibreOffice:
* I found one page that claimed Overwrite mode had no practical use
today, I didn't find any that listed any uses of it.
* The only use case I can imagine is filling out order forms that are
comprised of ASCII text only (with  as placeholders) – it's safe
to say that no one does that any more since PDF's are reasonably easy
to generate.
* I've found enough pages that describe how utterly
confusing/frustrating Overwrite mode is to many people, due to it
being so easy to trigger

* In Word 2007+ you need to enable the Ins key in the options before
you can use it
* Thunderbird/Firefox/Evolution/Google Docs/Apple Pages don't have any
Overwrite mode at all
* Gedit still has it (and it's turned on/off with Ins)

* Shift-Ins currently does the same as Ctrl-V (paste) – so that
particular accelerator won't work, but Ctrl-Ins isn't taken yet
* As always, accelerators are configurable, so if anyone really needs
Ins, they can just set it up this way
* I noticed that unlike with the Selection modes there's no menu item
for Overwrite mode... which is bad, because it also means that people
won't notice when we've changed the accelerator.

Conclusion:
* I personally wouldn't mind seeing Overwrote mode go entirely, I
don't know what other people think – but as Thunderbird/... prove:
it's been done
* If we want to keep Overwrite mode alive, but without a status bar indicator:
##1 do it like MSO does it – add a preference that's turned off by default
##2 add a menu item Overwrite mode to the Edit menu, which would
obviously mostly serve to advertise our new accelerator
** Mirek's proposal of a red caret seems very good to me if we go with
either of the above two ways (but a red block would be even more
descriptive methinks)


   - more helpful STD/BLK/... etc. selection statusbar indicator
 
  Do we really need indicators for the selection modes at all? They are
  sufficiently hard to trigger and a sufficiently minor use case to
  ignore them in the main window, I think.

 Too late, I've implemented that in the meantime :-)

Looks nice anyway. And saves quite a bit of space, so fine with me.
Thanks, you two.


 If you mean what is in master now, that is only a proof-of-concept of
 drawing into the non-client area, unfinished work.  But I'd like it to
 be a bit different, I'll start a thread on the design@ list about that.

Mirek has already started a thread related to that... Play with the
Windows look, it's called.


Astron.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


Re: [Libreoffice-ux-advise] Mirek's visit in SUSE :-)

2012-05-26 Thread Jean-Francois Nifenecker

Le 26/05/2012 11:31, Stefan Knorr (Astron) a écrit :


Right, so I've looked around a bit on the internets/in LibreOffice:
* I found one page that claimed Overwrite mode had no practical use
today, I didn't find any that listed any uses of it.
* The only use case I can imagine is filling out order forms that are
comprised of ASCII text only (with  as placeholders) – it's safe
to say that no one does that any more since PDF's are reasonably easy
to generate.
* I've found enough pages that describe how utterly
confusing/frustrating Overwrite mode is to many people, due to it
being so easy to trigger

* In Word 2007+ you need to enable the Ins key in the options before
you can use it
* Thunderbird/Firefox/Evolution/Google Docs/Apple Pages don't have any
Overwrite mode at all
* Gedit still has it (and it's turned on/off with Ins)

* Shift-Ins currently does the same as Ctrl-V (paste) – so that
particular accelerator won't work, but Ctrl-Ins isn't taken yet
* As always, accelerators are configurable, so if anyone really needs
Ins, they can just set it up this way
* I noticed that unlike with the Selection modes there's no menu item
for Overwrite mode... which is bad, because it also means that people
won't notice when we've changed the accelerator.


Agreed with all of this. Overwrite mode is mostly a thing of the past. 
When people inadvertently press the Insert key, they feel rather annoyed.




Conclusion:
* I personally wouldn't mind seeing Overwrote mode go entirely,


+1


* If we want to keep Overwrite mode alive, but without a status bar indicator:
##1 do it like MSO does it – add a preference that's turned off by default
##2 add a menu item Overwrite mode to the Edit menu, which would
obviously mostly serve to advertise our new accelerator
** Mirek's proposal of a red caret seems very good to me if we go with
either of the above two ways (but a red block would be even more
descriptive methinks)


Dunno about the red thing wrt visually impaired people, but, at least, 
having a block caret is a good idea.


--
Jean-Francois Nifenecker, Bordeaux
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-ux-advise] white black in color drop-down ...

2012-05-26 Thread Michael Meeks
Hi there,

One thing that has annoyed me in the past, but I'm not really a power
user is hunting 'white' down the color selector list. Any thoughts on
this rather trivial patch to move them together ? [ not pushed to msater
].

Thanks,

Michael.

-- 
michael.me...@suse.com  , Pseudo Engineer, itinerant idiot
attachment: shot.pngdiff --git a/extras/source/palettes/standard.soc b/extras/source/palettes/standard.soc
index f48577a..6361f7b 100644
--- a/extras/source/palettes/standard.soc
+++ b/extras/source/palettes/standard.soc
@@ -1,6 +1,7 @@
 ?xml version=1.0 encoding=UTF-8?
 office:color-table xmlns:office=http://openoffice.org/2000/office; xmlns:style=http://openoffice.org/2000/style; xmlns:text=http://openoffice.org/2000/text; xmlns:table=http://openoffice.org/2000/table; xmlns:draw=http://openoffice.org/2000/drawing; xmlns:fo=http://www.w3.org/1999/XSL/Format; xmlns:xlink=http://www.w3.org/1999/xlink; xmlns:dc=http://purl.org/dc/elements/1.1/; xmlns:meta=http://openoffice.org/2000/meta; xmlns:number=http://openoffice.org/2000/datastyle; xmlns:svg=http://www.w3.org/2000/svg; xmlns:chart=http://openoffice.org/2000/chart; xmlns:dr3d=http://openoffice.org/2000/dr3d; xmlns:math=http://www.w3.org/1998/Math/MathML; xmlns:form=http://openoffice.org/2000/form; xmlns:script=http://openoffice.org/2000/script;
   draw:color draw:name=Black draw:color=#00/
+  draw:color draw:name=White draw:color=#ff/
   draw:color draw:name=Blue draw:color=#80/
   draw:color draw:name=Green draw:color=#008000/
   draw:color draw:name=Turquoise draw:color=#008080/
@@ -15,7 +16,6 @@
   draw:color draw:name=Light red draw:color=#ff/
   draw:color draw:name=Light magenta draw:color=#ff00ff/
   draw:color draw:name=Yellow draw:color=#00/
-  draw:color draw:name=White draw:color=#ff/
   draw:color draw:name=Gray 80% draw:color=#33/
   draw:color draw:name=Gray 70% draw:color=#4c4c4c/
   draw:color draw:name=Gray 60% draw:color=#66/
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


Re: [Libreoffice-ux-advise] white black in color drop-down ...

2012-05-26 Thread Alexander Wilms

Hi,

Sounds good.

Maybe it would be even better to move all the grey colors up so that 
that they aren't somewhere between the other colors.


Kin Regards

___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


Re: [Libreoffice-ux-advise] white black in color drop-down ...

2012-05-26 Thread Alexander Wilms

Hi,

Sounds good.

Maybe it would be even better to move all the grey colors up so that 
that they aren't somewhere between the other colors.


Kin Regards

___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise