[PATCH] Replace boost::bind by lambdas in canvas/source/directx tree...

2015-10-31 Thread Mario Rugiero (via Code Review)
Hi,

I would like you to review the following patch:

https://gerrit.libreoffice.org/19702

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/02/19702/1

Replace boost::bind by lambdas in canvas/source/directx tree.

Change-Id: I6ecdd97a5054880d3c502f482db0839f8601e295
---
M canvas/source/directx/dx_canvashelper_texturefill.cxx
M canvas/source/directx/dx_textlayout_drawhelper.cxx
2 files changed, 2 insertions(+), 9 deletions(-)



diff --git a/canvas/source/directx/dx_canvashelper_texturefill.cxx 
b/canvas/source/directx/dx_canvashelper_texturefill.cxx
index c2e0c96..3d5f893 100644
--- a/canvas/source/directx/dx_canvashelper_texturefill.cxx
+++ b/canvas/source/directx/dx_canvashelper_texturefill.cxx
@@ -19,7 +19,6 @@
 
 #include 
 
-#include 
 #include 
 
 #include 
@@ -576,10 +575,7 @@
 std::transform([0],

[0]+rValues.maColors.getLength(),
aColors.begin(),
-   boost::bind(
-   (Gdiplus::ARGB (*)( const 
uno::Sequence< double >& ))(
-   ::sequenceToArgb),
-   _1));
+   [](const uno::Sequence< double >& 
aDoubleSequence) { return tools::sequenceToArgb(aDoubleSequence); } );
 std::vector< Gdiplus::REAL > aStops;
 comphelper::sequenceToContainer(aStops,rValues.maStops);
 
diff --git a/canvas/source/directx/dx_textlayout_drawhelper.cxx 
b/canvas/source/directx/dx_textlayout_drawhelper.cxx
index 55c267d..3db3996 100644
--- a/canvas/source/directx/dx_textlayout_drawhelper.cxx
+++ b/canvas/source/directx/dx_textlayout_drawhelper.cxx
@@ -20,7 +20,6 @@
 #include 
 
 #include 
-#include 
 
 #include 
 #include 
@@ -80,9 +79,7 @@
 
 // issue an ReleaseHDC() when leaving the scope
 const ::comphelper::ScopeGuard aGuard(
-boost::bind( ::Graphics::ReleaseHDC,
- rGraphics.get(),
- hdc ));
+[, ]() mutable { rGraphics->ReleaseHDC(hdc); } );
 
 SystemGraphicsData aSystemGraphicsData;
 aSystemGraphicsData.nSize = sizeof(SystemGraphicsData);

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I6ecdd97a5054880d3c502f482db0839f8601e295
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Mario Rugiero 
Gerrit-Reviewer: Anonymous Coward #1000450
Gerrit-Reviewer: Anonymous Coward #1000808
Gerrit-Reviewer: Gerrit Buildbot for LibreOffice
Gerrit-Reviewer: Jenkins 
Gerrit-Reviewer: Joel Madero 
Gerrit-Reviewer: LibreOffice gerrit bot 
Gerrit-Reviewer: Mario Rugiero 
Gerrit-Reviewer: Tinderbox 21 - Mac 
Gerrit-Reviewer: libreoffice buildbot1 
Gerrit-Reviewer: libreoffice buildbot2 
Gerrit-Reviewer: tb-37 MacOSX tdf 
Gerrit-Reviewer: tb16 
Gerrit-Reviewer: t...@libreoffice.org
Gerrit-Reviewer: t...@shmget.com
Gerrit-Reviewer: tb33 
Gerrit-Reviewer: t...@libreoffice.org
Gerrit-Reviewer: tb39 
Gerrit-Reviewer: tb42 
Gerrit-Reviewer: t...@libreoffice.org
Gerrit-Reviewer: test_jenkins_...@libreoffice.org
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] String to OUString

2013-09-05 Thread Thomas Arnhold (via Code Review)
Hello Andrzej J.R. Hunt,

I'd like you to reexamine a change.  Please visit

https://gerrit.libreoffice.org/5817

to look at the new patch set (#2).

Change subject: String to OUString
..

String to OUString

And removed nearly all xub_StrLen in starmath.

Some sal_uInt16 which were xub_StrLen before
9a0d753b84aed53083bed3ed460308b771f432a8 are also converted to sal_Int32
where applicable.

Change-Id: I31d7794f4c7aa840545edff41a102b76bb39e042
---
M starmath/inc/node.hxx
M starmath/inc/parse.hxx
M starmath/qa/cppunit/test_starmath.cxx
M starmath/source/accessibility.cxx
M starmath/source/edit.cxx
M starmath/source/node.cxx
M starmath/source/parse.cxx
M starmath/source/smmod.cxx
8 files changed, 84 insertions(+), 95 deletions(-)


  git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/17/5817/2
-- 
To view, visit https://gerrit.libreoffice.org/5817
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newpatchset
Gerrit-Change-Id: I31d7794f4c7aa840545edff41a102b76bb39e042
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Thomas Arnhold tho...@arnhold.org
Gerrit-Reviewer: Andrzej J.R. Hunt andr...@ahunt.org
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org

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


[PUSHED] String to OUString

2013-09-05 Thread Andrzej J.R. Hunt (via Code Review)
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/5817

Approvals:
  Andrzej J.R. Hunt: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I31d7794f4c7aa840545edff41a102b76bb39e042
Gerrit-PatchSet: 3
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Thomas Arnhold tho...@arnhold.org
Gerrit-Reviewer: Andrzej J.R. Hunt andr...@ahunt.org
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org
Gerrit-Reviewer: Thomas Arnhold tho...@arnhold.org

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


[PUSHED] XubString to OUString

2013-09-04 Thread Thomas Arnhold (via Code Review)
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/5802

Approvals:
  LibreOffice gerrit bot: Verified
  Thomas Arnhold: 
  Michael Stahl: Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: Ia7514abaa494a367d51db9d9990cd94cff6ed503
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Thomas Arnhold tho...@arnhold.org
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org
Gerrit-Reviewer: Michael Stahl mst...@redhat.com
Gerrit-Reviewer: Thomas Arnhold tho...@arnhold.org

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


[PUSHED] Remove more unused methods

2013-09-04 Thread Thomas Arnhold (via Code Review)
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/5789

Approvals:
  LibreOffice gerrit bot: Verified
  Thomas Arnhold: Verified; Looks good to me, approved
  Marcos Souza: Looks good to me, but someone else must approve


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I8fec40d767905bcca366257a67f669eaa1055cbc
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Marcos Souza marcos.souza@gmail.com
Gerrit-Reviewer: Björn Michaelsen bjoern.michael...@canonical.com
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org
Gerrit-Reviewer: Marcos Souza marcos.souza@gmail.com
Gerrit-Reviewer: Norbert Thiebaud nthieb...@gmail.com
Gerrit-Reviewer: Thomas Arnhold tho...@arnhold.org

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


[PATCH] Remove more unused methods

2013-09-03 Thread Thomas Arnhold (via Code Review)
Hello LibreOffice gerrit bot, Marcos Souza,

I'd like you to reexamine a rebased change.  Please visit

https://gerrit.libreoffice.org/5757

to look at the new rebased patch set (#2).

Change subject: Remove more unused methods
..

Remove more unused methods

Change-Id: I79548f9dd1b83ef940e7a1302cf7b728610fed4a
---
M basegfx/source/pixel/bpixel.cxx
M formula/source/ui/dlg/formula.cxx
M include/basegfx/pixel/bpixel.hxx
M include/formula/formula.hxx
M include/toolkit/controls/unocontrolbase.hxx
M include/unotools/xmlaccelcfg.hxx
M include/vcl/bmpacc.hxx
M sd/source/ui/dlg/PhotoAlbumDialog.cxx
M sd/source/ui/dlg/PhotoAlbumDialog.hxx
M sd/source/ui/framework/tools/FrameworkHelper.cxx
M sd/source/ui/inc/framework/FrameworkHelper.hxx
M sd/source/ui/sidebar/CurrentMasterPagesSelector.cxx
M sd/source/ui/sidebar/CurrentMasterPagesSelector.hxx
M sfx2/source/sidebar/FocusManager.cxx
M sfx2/source/sidebar/FocusManager.hxx
M toolkit/source/controls/unocontrolbase.cxx
M unotools/source/config/xmlaccelcfg.cxx
M unusedcode.easy
M vcl/inc/dbggui.hxx
M vcl/source/app/dbggui.cxx
M vcl/source/gdi/bmpacc.cxx
M vcl/source/gdi/bmpacc3.cxx
22 files changed, 0 insertions(+), 321 deletions(-)


  git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/57/5757/2
-- 
To view, visit https://gerrit.libreoffice.org/5757
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newpatchset
Gerrit-Change-Id: I79548f9dd1b83ef940e7a1302cf7b728610fed4a
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Marcos Souza marcos.souza@gmail.com
Gerrit-Reviewer: Björn Michaelsen bjoern.michael...@canonical.com
Gerrit-Reviewer: David Ostrovsky david.ostrov...@gmx.de
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org
Gerrit-Reviewer: Marcos Souza marcos.souza@gmail.com

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


[PUSHED] Remove more unused methods

2013-09-03 Thread Thomas Arnhold (via Code Review)
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/5757

Approvals:
  Thomas Arnhold: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I79548f9dd1b83ef940e7a1302cf7b728610fed4a
Gerrit-PatchSet: 3
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Marcos Souza marcos.souza@gmail.com
Gerrit-Reviewer: Björn Michaelsen bjoern.michael...@canonical.com
Gerrit-Reviewer: David Ostrovsky david.ostrov...@gmx.de
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org
Gerrit-Reviewer: Marcos Souza marcos.souza@gmail.com
Gerrit-Reviewer: Thomas Arnhold tho...@arnhold.org

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


[PATCH] update README

2013-09-03 Thread David Tardon (via Code Review)
Hi,

I would like you to review the following patch:

https://gerrit.libreoffice.org/5772

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/libcdr refs/changes/72/5772/1

update README

Change-Id: I4b64948956b8819896b2ed2ee117fe747c38078f
---
M README
1 file changed, 3 insertions(+), 3 deletions(-)



diff --git a/README b/README
index 0fb9aed..0a95f5e 100644
--- a/README
+++ b/README
@@ -13,9 +13,9 @@
 applications that have no notion of pages themselves.
 
 libcdr requires boost, icu, lcms2, libwpd, libwpg and zlib to build.
-Most up to date code is available from Git repository at Freedesktop and
-is currently recommended instead of regular releases. Please visit
-http://cgit.freedesktop.org/libreoffice/libcdr/. See
+Most up to date code is available from Git repository at libreoffice.org
+(git://gerrit.libreoffice.org/libcdr), which is mirrored at
+freedesktop.org (git://anongit.freedesktop.org/libreoffice/libcdr). See
 http://www.freedesktop.org/wiki/Software/libcdr for more information.
 
 For convenience of use in third-party projects the library is available under

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I4b64948956b8819896b2ed2ee117fe747c38078f
Gerrit-PatchSet: 1
Gerrit-Project: libcdr
Gerrit-Branch: master
Gerrit-Owner: David Tardon dtar...@redhat.com

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


[PUSHED] update README

2013-09-03 Thread David Tardon (via Code Review)
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/5772

Approvals:
  David Tardon: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I4b64948956b8819896b2ed2ee117fe747c38078f
Gerrit-PatchSet: 2
Gerrit-Project: libcdr
Gerrit-Branch: master
Gerrit-Owner: David Tardon dtar...@redhat.com
Gerrit-Reviewer: David Tardon dtar...@redhat.com

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


[PATCH] add cgit/gitweb URLs to the repo

2013-09-03 Thread David Tardon (via Code Review)
Hi,

I would like you to review the following patch:

https://gerrit.libreoffice.org/5778

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/libmspub refs/changes/78/5778/1

add cgit/gitweb URLs to the repo

Change-Id: I9231c621faafdd2cc67f9b066254f0cff61f9170
---
M README
1 file changed, 3 insertions(+), 4 deletions(-)



diff --git a/README b/README
index 5e266b9..53b0fd8 100644
--- a/README
+++ b/README
@@ -2,10 +2,9 @@
 Publisher files.
 
 libmspub requires boost, icu, libwpd, libwpg and zlib to build. Most up
-to date code is available from Git repository at libreoffice.org or the
-mirror at freedesktop.org and is currently recommended instead of
-regular releases. Please visit
-http://cgit.freedesktop.org/libreoffice/libmspub/. See
+to date code is available from Git repository at libreoffice.org
+(https://gerrit.libreoffice.org/gitweb?p=libmspub.git) or the mirror at
+freedesktop.org (http://cgit.freedesktop.org/libreoffice/libmspub/). See
 http://www.freedesktop.org/wiki/Software/libmspub for more information.
 
 For convenience of use in third-party projects the library is available under

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I9231c621faafdd2cc67f9b066254f0cff61f9170
Gerrit-PatchSet: 1
Gerrit-Project: libmspub
Gerrit-Branch: master
Gerrit-Owner: David Tardon dtar...@redhat.com

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


[PUSHED] add cgit/gitweb URLs to the repo

2013-09-03 Thread David Tardon (via Code Review)
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/5778

Approvals:
  David Tardon: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I9231c621faafdd2cc67f9b066254f0cff61f9170
Gerrit-PatchSet: 2
Gerrit-Project: libmspub
Gerrit-Branch: master
Gerrit-Owner: David Tardon dtar...@redhat.com
Gerrit-Reviewer: David Tardon dtar...@redhat.com

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


[PATCH] add cgit/gitweb URLs

2013-09-03 Thread David Tardon (via Code Review)
Hi,

I would like you to review the following patch:

https://gerrit.libreoffice.org/5779

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/libvisio refs/changes/79/5779/1

add cgit/gitweb URLs

Change-Id: I9ad2904ab48d836a8ee26e512d2db97a0f6304cf
---
M README
1 file changed, 4 insertions(+), 3 deletions(-)



diff --git a/README b/README
index e8971e6..aa58d73 100644
--- a/README
+++ b/README
@@ -2,9 +2,10 @@
 
 libvisio requires boost, gperf, icu, libwpd, libwpg, libxml2, perl and
 zlib to build. Most up to date code is available from Git repository at
-libreoffice.org or the mirror at freedesktop.org and is currently
-recommended instead of regular releases. Please visit
-http://cgit.freedesktop.org/libreoffice/libvisio/. See
+libreoffice.org (https://gerrit.libreoffice.org/gitweb?p=libvisio.git)
+or the mirror at freedesktop.org
+(http://cgit.freedesktop.org/libreoffice/contrib/libvisio/) and is
+currently recommended instead of regular releases. See
 http://www.freedesktop.org/wiki/Software/libvisio for more information.
 
 For convenience of use in third-party projects the library is available under

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I9ad2904ab48d836a8ee26e512d2db97a0f6304cf
Gerrit-PatchSet: 1
Gerrit-Project: libvisio
Gerrit-Branch: master
Gerrit-Owner: David Tardon dtar...@redhat.com

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


[PUSHED] add cgit/gitweb URLs

2013-09-03 Thread David Tardon (via Code Review)
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/5779

Approvals:
  David Tardon: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I9ad2904ab48d836a8ee26e512d2db97a0f6304cf
Gerrit-PatchSet: 2
Gerrit-Project: libvisio
Gerrit-Branch: master
Gerrit-Owner: David Tardon dtar...@redhat.com
Gerrit-Reviewer: David Tardon dtar...@redhat.com

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


[PATCH] add automatic git hook setting in autogen.sh

2013-09-02 Thread Fridrich Strba (via Code Review)
Hi,

I would like you to review the following patch:

https://gerrit.libreoffice.org/5748

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/libvisio refs/changes/48/5748/1

add automatic git hook setting in autogen.sh

Change-Id: I95eb02dc2d347337d7b85f85d6459353278fb137
---
A .git-hooks/README
A .git-hooks/commit-msg
A .git-hooks/post-merge
A .git-hooks/pre-commit
M autogen.sh
5 files changed, 366 insertions(+), 7 deletions(-)



diff --git a/.git-hooks/README b/.git-hooks/README
new file mode 100644
index 000..c6612bc
--- /dev/null
+++ b/.git-hooks/README
@@ -0,0 +1,9 @@
+Git hooks are executable scripts you can place in $GIT_DIR/hooks directory to 
trigger action at certain points. 
+
+There are two groups of these hooks: client side and server side. 
+The client-side hooks:
+are for client operations such as committing and merging.
+The server-side hooks:
+are for Git server operations such as receiving pushed commits.
+
+See Also [ http://git-scm.com/book/en/Customizing-Git-Git-Hooks ]
\ No newline at end of file
diff --git a/.git-hooks/commit-msg b/.git-hooks/commit-msg
new file mode 100755
index 000..e3dfe69
--- /dev/null
+++ b/.git-hooks/commit-msg
@@ -0,0 +1,181 @@
+#!/bin/sh
+#
+# An example hook script to check the commit log message.
+# Called by git-commit with one argument, the name of the file
+# that has the commit message.  The hook should exit with non-zero
+# status after issuing an appropriate message if it wants to stop the
+# commit.  The hook is allowed to edit the commit message file.
+#
+# To enable this hook, make this file executable.
+
+# Uncomment the below to add a Signed-off-by line to the message.
+# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*\).*$/Signed-off-by: \1/p')
+# grep -qs ^$SOB $1 || echo $SOB  $1
+
+# This example catches duplicate Signed-off-by lines.
+
+base_dir=$(dirname $0)
+MSG=$1
+
+abort() {
+cp $1 $1.save
+cat 2 EOF
+Commit aborted, your commit message was saved as '$1.save'.
+
+Reason: $2
+
+EOF
+exit 1
+}
+
+test  = $(grep '^Signed-off-by: ' $1 |
+sort | uniq -c | sed -e '/^[   ]*1[]/d') || {
+   abort $1 Duplicate Signed-off-by lines.
+}
+
+# Check that the first line exists, and is not an asterisk
+
+if [ -z `head -n 1 $1 | grep -v '^[[:blank:]]*\*$'` ] ; then
+abort $1 Please provide the general description on the first line.
+fi
+
+# ...and that it is not too long
+
+if [ `head -n 1 $1 | wc -c` -gt 79 ] ; then
+abort $1 The first line is too long, please try to fit into 79 
characters.
+fi
+
+# ...and that it does not continue on the second line
+if [ `wc -l  $1` -gt 1 -a -n `head -n 2 $1 | tail -n 1 | sed 's/^#.*//'` 
] ; then
+abort $1 The second line is not empty - maybe the first line continues 
there?
+fi
+
+# Check that the message is not a ChangeLog-like one
+
+if [ -n `head -n 1 $1 | grep '^[0-9]\{4\}-[0-9]\{2\}-[0-9]\{2\}.*.*@.*'` ] 
; then
+abort $1 The commit message looks like ChangeLog, please use the git 
form.
+fi
+
+# Check for whitespace in front of *'s
+
+if [ -n `sed '/^#/,$d' $1 | grep '^[[:space:]]\+\*.*:'` -a -z `grep '^\*' 
$1` ] ; then
+abort $1 Please don't use whitespace in front of '* file: Description.' 
entries.
+fi
+
+# Check that lines do not start with '#something' (possibly accidental 
commit,
+# such as starting the message with '#ifdef', git commits start with 
'#whitespace'.
+
+if [ -n `grep '^#[^[:blank:]]' $1` ] ; then
+abort $1 Possible accidental comment in the commit message (leading # 
without space).
+fi
+
+
+#-- copied gerrit commit-msg hook to handle ChangeId --
+# From Gerrit Code Review 2.3
+#
+# Part of Gerrit Code Review (http://code.google.com/p/gerrit/)
+#
+# Copyright (C) 2009 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the License);
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an AS IS BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+CHANGE_ID_AFTER=Bug|Issue
+
+# Check for, and add if missing, a unique Change-Id
+#
+add_ChangeId() {
+clean_message=`sed -e '
+/^diff --git a\/.*/{
+s///
+q
+}
+/^Signed-off-by:/d
+/^#/d
+' $MSG | git stripspace`
+if test -z $clean_message
+then
+return
+fi
+
+id=`grep -i '^Change-Id:' $MSG | sed -e s/.*: I//`
+temp_msg=`grep -v -i '^Change-Id:' $MSG`
+echo $temp_msg  $MSG
+
+if  test -z $id
+then
+id=`_gen_ChangeId`
+

[PUSHED] add automatic git hook setting in autogen.sh

2013-09-02 Thread Fridrich Strba (via Code Review)
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/5745

Approvals:
  Fridrich Strba: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I95eb02dc2d347337d7b85f85d6459353278fb137
Gerrit-PatchSet: 2
Gerrit-Project: libcdr
Gerrit-Branch: master
Gerrit-Owner: Norbert Thiebaud nthieb...@gmail.com
Gerrit-Reviewer: Fridrich Strba fridr...@documentfoundation.org

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


[PUSHED] add automatic git hook setting in autogen.sh

2013-09-02 Thread Fridrich Strba (via Code Review)
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/5748

Approvals:
  Fridrich Strba: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I95eb02dc2d347337d7b85f85d6459353278fb137
Gerrit-PatchSet: 2
Gerrit-Project: libvisio
Gerrit-Branch: master
Gerrit-Owner: Fridrich Strba fridr...@documentfoundation.org
Gerrit-Reviewer: Fridrich Strba fridr...@documentfoundation.org
Gerrit-Reviewer: Norbert Thiebaud nthieb...@gmail.com

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


[PATCH] add automatic git hook setting in autogen.sh

2013-09-02 Thread Fridrich Strba (via Code Review)
Hi,

I would like you to review the following patch:

https://gerrit.libreoffice.org/5749

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/libmspub refs/changes/49/5749/1

add automatic git hook setting in autogen.sh

Change-Id: I95eb02dc2d347337d7b85f85d6459353278fb137
---
A .git-hooks/README
A .git-hooks/commit-msg
A .git-hooks/post-merge
A .git-hooks/pre-commit
M autogen.sh
5 files changed, 366 insertions(+), 7 deletions(-)



diff --git a/.git-hooks/README b/.git-hooks/README
new file mode 100644
index 000..c6612bc
--- /dev/null
+++ b/.git-hooks/README
@@ -0,0 +1,9 @@
+Git hooks are executable scripts you can place in $GIT_DIR/hooks directory to 
trigger action at certain points. 
+
+There are two groups of these hooks: client side and server side. 
+The client-side hooks:
+are for client operations such as committing and merging.
+The server-side hooks:
+are for Git server operations such as receiving pushed commits.
+
+See Also [ http://git-scm.com/book/en/Customizing-Git-Git-Hooks ]
\ No newline at end of file
diff --git a/.git-hooks/commit-msg b/.git-hooks/commit-msg
new file mode 100755
index 000..e3dfe69
--- /dev/null
+++ b/.git-hooks/commit-msg
@@ -0,0 +1,181 @@
+#!/bin/sh
+#
+# An example hook script to check the commit log message.
+# Called by git-commit with one argument, the name of the file
+# that has the commit message.  The hook should exit with non-zero
+# status after issuing an appropriate message if it wants to stop the
+# commit.  The hook is allowed to edit the commit message file.
+#
+# To enable this hook, make this file executable.
+
+# Uncomment the below to add a Signed-off-by line to the message.
+# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*\).*$/Signed-off-by: \1/p')
+# grep -qs ^$SOB $1 || echo $SOB  $1
+
+# This example catches duplicate Signed-off-by lines.
+
+base_dir=$(dirname $0)
+MSG=$1
+
+abort() {
+cp $1 $1.save
+cat 2 EOF
+Commit aborted, your commit message was saved as '$1.save'.
+
+Reason: $2
+
+EOF
+exit 1
+}
+
+test  = $(grep '^Signed-off-by: ' $1 |
+sort | uniq -c | sed -e '/^[   ]*1[]/d') || {
+   abort $1 Duplicate Signed-off-by lines.
+}
+
+# Check that the first line exists, and is not an asterisk
+
+if [ -z `head -n 1 $1 | grep -v '^[[:blank:]]*\*$'` ] ; then
+abort $1 Please provide the general description on the first line.
+fi
+
+# ...and that it is not too long
+
+if [ `head -n 1 $1 | wc -c` -gt 79 ] ; then
+abort $1 The first line is too long, please try to fit into 79 
characters.
+fi
+
+# ...and that it does not continue on the second line
+if [ `wc -l  $1` -gt 1 -a -n `head -n 2 $1 | tail -n 1 | sed 's/^#.*//'` 
] ; then
+abort $1 The second line is not empty - maybe the first line continues 
there?
+fi
+
+# Check that the message is not a ChangeLog-like one
+
+if [ -n `head -n 1 $1 | grep '^[0-9]\{4\}-[0-9]\{2\}-[0-9]\{2\}.*.*@.*'` ] 
; then
+abort $1 The commit message looks like ChangeLog, please use the git 
form.
+fi
+
+# Check for whitespace in front of *'s
+
+if [ -n `sed '/^#/,$d' $1 | grep '^[[:space:]]\+\*.*:'` -a -z `grep '^\*' 
$1` ] ; then
+abort $1 Please don't use whitespace in front of '* file: Description.' 
entries.
+fi
+
+# Check that lines do not start with '#something' (possibly accidental 
commit,
+# such as starting the message with '#ifdef', git commits start with 
'#whitespace'.
+
+if [ -n `grep '^#[^[:blank:]]' $1` ] ; then
+abort $1 Possible accidental comment in the commit message (leading # 
without space).
+fi
+
+
+#-- copied gerrit commit-msg hook to handle ChangeId --
+# From Gerrit Code Review 2.3
+#
+# Part of Gerrit Code Review (http://code.google.com/p/gerrit/)
+#
+# Copyright (C) 2009 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the License);
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an AS IS BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+CHANGE_ID_AFTER=Bug|Issue
+
+# Check for, and add if missing, a unique Change-Id
+#
+add_ChangeId() {
+clean_message=`sed -e '
+/^diff --git a\/.*/{
+s///
+q
+}
+/^Signed-off-by:/d
+/^#/d
+' $MSG | git stripspace`
+if test -z $clean_message
+then
+return
+fi
+
+id=`grep -i '^Change-Id:' $MSG | sed -e s/.*: I//`
+temp_msg=`grep -v -i '^Change-Id:' $MSG`
+echo $temp_msg  $MSG
+
+if  test -z $id
+then
+id=`_gen_ChangeId`
+

[PUSHED] add automatic git hook setting in autogen.sh

2013-09-02 Thread Fridrich Strba (via Code Review)
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/5749

Approvals:
  Fridrich Strba: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I95eb02dc2d347337d7b85f85d6459353278fb137
Gerrit-PatchSet: 2
Gerrit-Project: libmspub
Gerrit-Branch: master
Gerrit-Owner: Fridrich Strba fridr...@documentfoundation.org
Gerrit-Reviewer: Fridrich Strba fridr...@documentfoundation.org
Gerrit-Reviewer: Norbert Thiebaud nthieb...@gmail.com

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


[PATCH] add automatic git hook setting in autogen.sh

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

I would like you to review the following patch:

https://gerrit.libreoffice.org/5745

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/libcdr refs/changes/45/5745/1

add automatic git hook setting in autogen.sh

Change-Id: I95eb02dc2d347337d7b85f85d6459353278fb137
---
A .git-hooks/README
A .git-hooks/commit-msg
A .git-hooks/post-merge
A .git-hooks/pre-commit
M autogen.sh
5 files changed, 366 insertions(+), 7 deletions(-)



diff --git a/.git-hooks/README b/.git-hooks/README
new file mode 100644
index 000..3ddd71a
--- /dev/null
+++ b/.git-hooks/README
@@ -0,0 +1,9 @@
+Git hooks are executable scripts you can place in $GIT_DIR/hooks directory to 
trigger action at certain points. 
+
+There are two groups of these hooks: client side and server side. 
+The client-side hooks:
+are for client operations such as committing and merging.
+The server-side hooks:
+are for Git server operations such as receiving pushed commits.
+
+See Also [ http://git-scm.com/book/en/Customizing-Git-Git-Hooks ]
\ No newline at end of file
diff --git a/.git-hooks/commit-msg b/.git-hooks/commit-msg
new file mode 100755
index 000..e3dfe69
--- /dev/null
+++ b/.git-hooks/commit-msg
@@ -0,0 +1,181 @@
+#!/bin/sh
+#
+# An example hook script to check the commit log message.
+# Called by git-commit with one argument, the name of the file
+# that has the commit message.  The hook should exit with non-zero
+# status after issuing an appropriate message if it wants to stop the
+# commit.  The hook is allowed to edit the commit message file.
+#
+# To enable this hook, make this file executable.
+
+# Uncomment the below to add a Signed-off-by line to the message.
+# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*\).*$/Signed-off-by: \1/p')
+# grep -qs ^$SOB $1 || echo $SOB  $1
+
+# This example catches duplicate Signed-off-by lines.
+
+base_dir=$(dirname $0)
+MSG=$1
+
+abort() {
+cp $1 $1.save
+cat 2 EOF
+Commit aborted, your commit message was saved as '$1.save'.
+
+Reason: $2
+
+EOF
+exit 1
+}
+
+test  = $(grep '^Signed-off-by: ' $1 |
+sort | uniq -c | sed -e '/^[   ]*1[]/d') || {
+   abort $1 Duplicate Signed-off-by lines.
+}
+
+# Check that the first line exists, and is not an asterisk
+
+if [ -z `head -n 1 $1 | grep -v '^[[:blank:]]*\*$'` ] ; then
+abort $1 Please provide the general description on the first line.
+fi
+
+# ...and that it is not too long
+
+if [ `head -n 1 $1 | wc -c` -gt 79 ] ; then
+abort $1 The first line is too long, please try to fit into 79 
characters.
+fi
+
+# ...and that it does not continue on the second line
+if [ `wc -l  $1` -gt 1 -a -n `head -n 2 $1 | tail -n 1 | sed 's/^#.*//'` 
] ; then
+abort $1 The second line is not empty - maybe the first line continues 
there?
+fi
+
+# Check that the message is not a ChangeLog-like one
+
+if [ -n `head -n 1 $1 | grep '^[0-9]\{4\}-[0-9]\{2\}-[0-9]\{2\}.*.*@.*'` ] 
; then
+abort $1 The commit message looks like ChangeLog, please use the git 
form.
+fi
+
+# Check for whitespace in front of *'s
+
+if [ -n `sed '/^#/,$d' $1 | grep '^[[:space:]]\+\*.*:'` -a -z `grep '^\*' 
$1` ] ; then
+abort $1 Please don't use whitespace in front of '* file: Description.' 
entries.
+fi
+
+# Check that lines do not start with '#something' (possibly accidental 
commit,
+# such as starting the message with '#ifdef', git commits start with 
'#whitespace'.
+
+if [ -n `grep '^#[^[:blank:]]' $1` ] ; then
+abort $1 Possible accidental comment in the commit message (leading # 
without space).
+fi
+
+
+#-- copied gerrit commit-msg hook to handle ChangeId --
+# From Gerrit Code Review 2.3
+#
+# Part of Gerrit Code Review (http://code.google.com/p/gerrit/)
+#
+# Copyright (C) 2009 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the License);
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an AS IS BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+CHANGE_ID_AFTER=Bug|Issue
+
+# Check for, and add if missing, a unique Change-Id
+#
+add_ChangeId() {
+clean_message=`sed -e '
+/^diff --git a\/.*/{
+s///
+q
+}
+/^Signed-off-by:/d
+/^#/d
+' $MSG | git stripspace`
+if test -z $clean_message
+then
+return
+fi
+
+id=`grep -i '^Change-Id:' $MSG | sed -e s/.*: I//`
+temp_msg=`grep -v -i '^Change-Id:' $MSG`
+echo $temp_msg  $MSG
+
+if  test -z $id
+then
+id=`_gen_ChangeId`
+

[PATCH] Cross-platform libvlc loading.

2013-08-31 Thread Minh Ngo (via Code Review)
Hello Thorsten Behrens,

I'd like you to reexamine a change.  Please visit

https://gerrit.libreoffice.org/5627

to look at the new patch set (#2).

Change subject: Cross-platform libvlc loading.
..

Cross-platform libvlc loading.

Conflicts:
avmedia/source/vlc/wrapper/SymbolLoader.hxx

Change-Id: I2dcd86329419255751925e93db0c893da191be31
---
M avmedia/source/vlc/wrapper/SymbolLoader.hxx
1 file changed, 50 insertions(+), 23 deletions(-)


  git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/27/5627/2
-- 
To view, visit https://gerrit.libreoffice.org/5627
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newpatchset
Gerrit-Change-Id: I2dcd86329419255751925e93db0c893da191be31
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Minh Ngo nlmin...@gmail.com
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org
Gerrit-Reviewer: Thorsten Behrens tbehr...@suse.com
Gerrit-Reviewer: Tor Lillqvist t...@iki.fi

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


[PATCH] Changed the Corel Draw versions for udta

2013-08-30 Thread Fridrich Strba (via Code Review)
Hi,

I would like you to review the following patch:

https://gerrit.libreoffice.org/5716

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/libcdr refs/changes/16/5716/1

Changed the Corel Draw versions for udta

Change-Id: I56858984c6ce67d732294020669687053b7b8b50
---
M src/lib/CDRParser.cpp
1 file changed, 1 insertion(+), 1 deletion(-)



diff --git a/src/lib/CDRParser.cpp b/src/lib/CDRParser.cpp
index 9308ff3..06280b7 100644
--- a/src/lib/CDRParser.cpp
+++ b/src/lib/CDRParser.cpp
@@ -3285,7 +3285,7 @@
 void libcdr::CDRParser::readUdta(WPXInputStream *input)
 {
   CDR_DEBUG_MSG((libcdr::CDRParser::readUdta\n));
-  if (m_version == 1400)
+  if (m_version = 1300  m_version = 1500)
   {
 input-seek(6, WPX_SEEK_CUR); // Not sure what these bytes are for.  Field 
id?
 std::vectorunsigned char name;

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I56858984c6ce67d732294020669687053b7b8b50
Gerrit-PatchSet: 1
Gerrit-Project: libcdr
Gerrit-Branch: master
Gerrit-Owner: Fridrich Strba fridr...@documentfoundation.org

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


[PATCH] Little tiny nit

2013-08-30 Thread Fridrich Strba (via Code Review)
Hi,

I would like you to review the following patch:

https://gerrit.libreoffice.org/5717

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/libcdr refs/changes/17/5717/1

Little tiny nit

Change-Id: Ib4fed604412afdaeb3ec0b03c1c8328eae554842
---
M src/lib/CDRParser.cpp
1 file changed, 1 insertion(+), 1 deletion(-)



diff --git a/src/lib/CDRParser.cpp b/src/lib/CDRParser.cpp
index 06280b7..1b1dcc9 100644
--- a/src/lib/CDRParser.cpp
+++ b/src/lib/CDRParser.cpp
@@ -3285,7 +3285,7 @@
 void libcdr::CDRParser::readUdta(WPXInputStream *input)
 {
   CDR_DEBUG_MSG((libcdr::CDRParser::readUdta\n));
-  if (m_version = 1300  m_version = 1500)
+  if (m_version = 1300  m_version  1600)
   {
 input-seek(6, WPX_SEEK_CUR); // Not sure what these bytes are for.  Field 
id?
 std::vectorunsigned char name;

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ib4fed604412afdaeb3ec0b03c1c8328eae554842
Gerrit-PatchSet: 1
Gerrit-Project: libcdr
Gerrit-Branch: master
Gerrit-Owner: Fridrich Strba fridr...@documentfoundation.org

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


[PUSHED] Little tiny nit

2013-08-30 Thread Fridrich Strba (via Code Review)
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/5717

Approvals:
  Fridrich Strba: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: Ib4fed604412afdaeb3ec0b03c1c8328eae554842
Gerrit-PatchSet: 2
Gerrit-Project: libcdr
Gerrit-Branch: master
Gerrit-Owner: Fridrich Strba fridr...@documentfoundation.org
Gerrit-Reviewer: Fridrich Strba fridr...@documentfoundation.org

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


[ABANDONED] text alignment help text got detacted from the tabpage

2013-08-29 Thread via Code Review
Caolán McNamara has abandoned this change.

Change subject: text alignment help text got detacted from the tabpage
..


Patch Set 1: Abandoned

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

Gerrit-MessageType: abandon
Gerrit-Change-Id: Idb74e753b64e3d575d5a951a0cdca6aae69f543d
Gerrit-PatchSet: 1
Gerrit-Project: help
Gerrit-Branch: master
Gerrit-Owner: Caolán McNamara caol...@redhat.com

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


[PATCH] text alignment help text got detacted from the tabpage

2013-08-29 Thread via Code Review
Hi,

I would like you to review the following patch:

https://gerrit.libreoffice.org/5676

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/help refs/changes/76/5676/1

text alignment help text got detacted from the tabpage

(cherry picked from commit 2ce8cb8c7b0ee203f2df743849e959949ccc2fc1)

Change-Id: Idf28d8a969f01761e82b32c12ee2b9ab745719ed

numberformatpage-numberingformatpage

Change-Id: Idb74e753b64e3d575d5a951a0cdca6aae69f543d
(cherry picked from commit fad218bb130d6134c05206e0018ed50834829fd4)
---
M helpers/help_hid.lst
M source/text/shared/01/05020300.xhp
M source/text/shared/01/05340300.xhp
3 files changed, 52 insertions(+), 62 deletions(-)



diff --git a/helpers/help_hid.lst b/helpers/help_hid.lst
index a73fe62..100bf46 100644
--- a/helpers/help_hid.lst
+++ b/helpers/help_hid.lst
@@ -7554,9 +7554,6 @@
 svx_ListBox_RID_SVXFLOAT_3D_LB_MAT_FAVORITES,3388493437,
 svx_ListBox_RID_SVXFLOAT_3D_LB_MAT_SPECULAR,3388493431,
 svx_ListBox_RID_SVXFLOAT_3D_LB_SHADEMODE,3388493358,
-svx_ListBox_RID_SVXPAGE_ALIGNMENT_LB_FRAMEDIR,702189100,
-svx_ListBox_RID_SVXPAGE_ALIGNMENT_LB_HORALIGN,702189068,
-svx_ListBox_RID_SVXPAGE_ALIGNMENT_LB_VERALIGN,702189072,
 svx_ListBox_RID_SVXPAGE_ALIGN_PARAGRAPH_LB_LASTLINE,703778354,
 svx_ListBox_RID_SVXPAGE_ALIGN_PARAGRAPH_LB_TEXTDIRECTION,703778396,
 svx_ListBox_RID_SVXPAGE_ALIGN_PARAGRAPH_LB_VERTALIGN,703778340,
@@ -7651,7 +7648,6 @@
 svx_MetricField_RID_SVXFLOAT_3D_MTR_MAT_SPECULAR_INTENSITY,3388496506,
 svx_MetricField_RID_SVXFLOAT_3D_MTR_PERCENT_DIAGONAL,3388496414,
 svx_MetricField_RID_SVXFLOAT_3D_MTR_SLANT,3388496433,
-svx_MetricField_RID_SVXPAGE_ALIGNMENT_ED_INDENT,702192142,
 svx_MetricField_RID_SVXPAGE_ANGLE_MTR_FLD_ANGLE,701504019,
 svx_MetricField_RID_SVXPAGE_ANGLE_MTR_FLD_POS_X,701504007,
 svx_MetricField_RID_SVXPAGE_ANGLE_MTR_FLD_POS_Y,701504008,
@@ -7807,7 +7803,6 @@
 svx_NumericField_RID_SVXDLG_SEARCHSIMILARITY_NF_SHORTER,1237964819,
 svx_NumericField_RID_SVXFLOAT_3D_NUM_HORIZONTAL,3388495897,
 svx_NumericField_RID_SVXFLOAT_3D_NUM_VERTICAL,3388495899,
-svx_NumericField_RID_SVXPAGE_ALIGNMENT_NF_DEGREES,702191640,
 svx_NumericField_RID_SVXPAGE_AREA_NUM_FLD_STEPCOUNT,701634561,
 svx_NumericField_RID_SVXPAGE_GRID_NUM_FLD_DIVISION_X,703207437,
 svx_NumericField_RID_SVXPAGE_GRID_NUM_FLD_DIVISION_Y,703207438,
@@ -8052,11 +8047,6 @@
 svx_TabPage_RID_SVXPAGE_TEXTANIMATION,703725568,
 svx_TabPage_RID_SVX_GRFFILTER_DLG_EMBOSS_TAB,706232320,
 svx_TabPage_RID_SVX_XFORMS_TABPAGES,832110592,
-svx_TriStateBox_RID_SVXPAGE_ALIGNMENT_BTN_ASIAN_VERTICAL,702187035,
-svx_TriStateBox_RID_SVXPAGE_ALIGNMENT_BTN_HYPH,702187050,
-svx_TriStateBox_RID_SVXPAGE_ALIGNMENT_BTN_SHRINK,702187053,
-svx_TriStateBox_RID_SVXPAGE_ALIGNMENT_BTN_TXTSTACKED,702187029,
-svx_TriStateBox_RID_SVXPAGE_ALIGNMENT_BTN_WRAP,702187049,
 svx_TriStateBox_RID_SVXPAGE_AREA_TSB_ORIGINAL,701629958,
 svx_TriStateBox_RID_SVXPAGE_AREA_TSB_SCALE,701629953,
 svx_TriStateBox_RID_SVXPAGE_AREA_TSB_STEPCOUNT,701629955,
diff --git a/source/text/shared/01/05020300.xhp 
b/source/text/shared/01/05020300.xhp
index c8ab7a0..9363b55 100644
--- a/source/text/shared/01/05020300.xhp
+++ b/source/text/shared/01/05020300.xhp
@@ -39,7 +39,7 @@
 /bookmark
   commentmw transferred format codes; to Calc guide 
Format_value_userdef.xhp and numers; and cells; to Calc guide 
Format_table.xhp. Changed currencies;/comment
   
-bookmark xml-lang=en-US 
branch=hid/cui/ui/numberformatpage/NumberFormatPage id=bm_id3150147 
localize=false/
+bookmark xml-lang=en-US 
branch=hid/cui/ui/numberingformatpage/NumberingFormatPage id=bm_id3150147 
localize=false/
   
 bookmark xml-lang=en-US branch=hid/.uno:TableNumberFormatDialog 
id=bm_id2370759 localize=false/
   
@@ -49,9 +49,9 @@
 section id=howtoget
   embed href=text/shared/00/00040503.xhp#zahlen/
 /section
-bookmark xml-lang=en-US branch=hid/cui/ui/numberformatpage/categorylb 
id=bm_id3153312 localize=false/
+bookmark xml-lang=en-US branch=hid/cui/ui/numberingformatpage/categorylb 
id=bm_id3153312 localize=false/
   paragraph xml-lang=en-US id=hd_id3155392 role=heading level=2 
l10n=U oldref=3Category/paragraph
-  paragraph xml-lang=en-US id=par_id3150774 role=paragraph l10n=U 
oldref=4ahelp hid=cui/ui/numberformatpage/categorylbSelect a category 
from the list, and then select a formatting style in the emphFormat 
/emphbox./ahelp/paragraph
+  paragraph xml-lang=en-US id=par_id3150774 role=paragraph l10n=U 
oldref=4ahelp hid=cui/ui/numberingformatpage/categorylbSelect a category 
from the list, and then select a formatting style in the emphFormat 
/emphbox./ahelp/paragraph
   
 switch select=appl
   
@@ -62,67 +62,67 @@
   
 /switch
   
-bookmark xml-lang=en-US branch=hid/cui/ui/numberformatpage/formatlb 
id=bm_id3155449 localize=false/
+bookmark xml-lang=en-US branch=hid/cui/ui/numberingformatpage/formatlb 
id=bm_id3155449 localize=false/
   paragraph xml-lang=en-US id=hd_id3155342 role=heading level=2 
l10n=U oldref=5Format/paragraph
-  paragraph xml-lang=en-US 

[PATCH] Fix windows libo crash with graphite fonts.

2013-08-28 Thread Martin Hosken (via Code Review)
Hello LibreOffice gerrit bot,

I'd like you to reexamine a change.  Please visit

https://gerrit.libreoffice.org/5644

to look at the new patch set (#2).

Change subject: Fix windows libo crash with graphite fonts.
..

Fix windows libo crash with graphite fonts.

New master to base off, hoping it will build everywhere to pass gerrit.
Updates graphite library with bug fixes (and minimal improvements)
Proposed for stable branch update as well.

Change-Id: I6c5825420d9ea5768564253789a28412f3c1900a
---
M download.lst
M graphite/UnpackedTarball_graphite.mk
D graphite/graphite2.issue1030.patch.1
3 files changed, 1 insertion(+), 14 deletions(-)


  git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/44/5644/2
-- 
To view, visit https://gerrit.libreoffice.org/5644
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newpatchset
Gerrit-Change-Id: I6c5825420d9ea5768564253789a28412f3c1900a
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Martin Hosken martin_hos...@sil.org
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org
Gerrit-Reviewer: Thorsten Behrens tbehr...@suse.com

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


[PUSHED] Fix windows libo crash with graphite fonts.

2013-08-28 Thread Fridrich Strba (via Code Review)
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/5644

Approvals:
  LibreOffice gerrit bot: Verified
  Fridrich Strba: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I6c5825420d9ea5768564253789a28412f3c1900a
Gerrit-PatchSet: 3
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Martin Hosken martin_hos...@sil.org
Gerrit-Reviewer: Fridrich Strba fridr...@documentfoundation.org
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org
Gerrit-Reviewer: Thorsten Behrens tbehr...@suse.com

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


[PUSHED] introduce gb_Package_PRESTAGEDIR

2013-08-26 Thread via Code Review
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/5591

Approvals:
  Björn Michaelsen: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I22d4208b2fad0d8fc59426ba4c8c52122876f646
Gerrit-PatchSet: 3
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Björn Michaelsen bjoern.michael...@canonical.com
Gerrit-Reviewer: Björn Michaelsen bjoern.michael...@canonical.com
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org
Gerrit-Reviewer: Matúš Kukan matus.ku...@gmail.com
Gerrit-Reviewer: Michael Stahl mst...@redhat.com

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


[PATCH] fdo#60924 autoinstall - gbuild/scp2: Move more libs to OOO

2013-08-26 Thread Marcos Souza (via Code Review)
Hello Michael Stahl,

I'd like you to reexamine a change.  Please visit

https://gerrit.libreoffice.org/5631

to look at the new patch set (#4).

Change subject: fdo#60924 autoinstall - gbuild/scp2: Move more libs to OOO
..

fdo#60924 autoinstall - gbuild/scp2: Move more libs to OOO

Change-Id: Ibb2c27a75d8cbaf5177f392930cc9e6effa48d1d
---
M Repository.mk
M scp2/source/ooo/file_library_ooo.scp
M scp2/source/ooo/module_hidden_ooo.scp
3 files changed, 21 insertions(+), 102 deletions(-)


  git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/31/5631/4
-- 
To view, visit https://gerrit.libreoffice.org/5631
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newpatchset
Gerrit-Change-Id: Ibb2c27a75d8cbaf5177f392930cc9e6effa48d1d
Gerrit-PatchSet: 4
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Marcos Souza marcos.souza@gmail.com
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org
Gerrit-Reviewer: Marcos Souza marcos.souza@gmail.com
Gerrit-Reviewer: Michael Stahl mst...@redhat.com

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


[PATCH] fdo#60924 autoinstall - gbuild/scp2: Move more libs to OOO

2013-08-26 Thread Marcos Souza (via Code Review)
Hello Michael Stahl,

I'd like you to reexamine a change.  Please visit

https://gerrit.libreoffice.org/5631

to look at the new patch set (#5).

Change subject: fdo#60924 autoinstall - gbuild/scp2: Move more libs to OOO
..

fdo#60924 autoinstall - gbuild/scp2: Move more libs to OOO

Change-Id: Ibb2c27a75d8cbaf5177f392930cc9e6effa48d1d
---
M Repository.mk
M scp2/source/ooo/file_library_ooo.scp
M scp2/source/ooo/module_hidden_ooo.scp
3 files changed, 21 insertions(+), 102 deletions(-)


  git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/31/5631/5
-- 
To view, visit https://gerrit.libreoffice.org/5631
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newpatchset
Gerrit-Change-Id: Ibb2c27a75d8cbaf5177f392930cc9e6effa48d1d
Gerrit-PatchSet: 5
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Marcos Souza marcos.souza@gmail.com
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org
Gerrit-Reviewer: Marcos Souza marcos.souza@gmail.com
Gerrit-Reviewer: Michael Stahl mst...@redhat.com

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


[PUSHED] fdo#60924 autoinstall - gbuild/scp2: Move more libs to OOO

2013-08-26 Thread Michael Stahl (via Code Review)
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/5631

Approvals:
  LibreOffice gerrit bot: Verified
  Michael Stahl: Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: Ibb2c27a75d8cbaf5177f392930cc9e6effa48d1d
Gerrit-PatchSet: 6
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Marcos Souza marcos.souza@gmail.com
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org
Gerrit-Reviewer: Marcos Souza marcos.souza@gmail.com
Gerrit-Reviewer: Michael Stahl mst...@redhat.com

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


[PATCH] introduce gb_Package_PRESTAGEDIR

2013-08-23 Thread via Code Review
Björn Michaelsen has uploaded a new patch set (#2).

Change subject: introduce gb_Package_PRESTAGEDIR
..

introduce gb_Package_PRESTAGEDIR

this introduces a prestage dir -- if a file can be found in that
directory, it will be copied over instead of build. Usecases for this
include:

- split builds:
  e.g. a part of the LibreOffice gets build by a core package and
  writer or calc package then only builds the additional missing
  pieces (while copying existing files from the earlier package build)
  please not this does not intend to produce separately installable
  instances, only to generate the build in multiple steps, to:
  - reduce filesystem usage of one build
  - paralellisation: e.g. writer and calc could build at the same
time on two builders
  - restart capability: e.g. if a build breaks in writer, no need to
rebuild everything (relevant for slow and somewhat more flaky
platforms like arm)
- staged single build:
  on a filesystem restrained builder, keeping all the objects around for
  the build can be a burden. With this, such builders can do a partial
  build (lets say: make svx), put the instdir aside, make clean and
  continue -- but without needing to keep space for the object files of
  the build up to svx.

It need gb_RUNNABLE_INSTDIR -- we are going there anyway, no need to
support other scenarios.

This needs more dependency breaking for most scenarios but a:

export gb_RUNNABLE_INSTDIR=T
make
cp -a instdir instdir_prestage
make clean
make sw.all
make sw.clean
export gb_Package_PRESTAGEDIR=`readlink -f instdir_prestage/unxlngx6.pro`
cd sw  make build # this does no compiles, it just copies

Change-Id: I22d4208b2fad0d8fc59426ba4c8c52122876f646
---
M solenv/gbuild/Library.mk
M solenv/gbuild/Package.mk
2 files changed, 25 insertions(+), 2 deletions(-)


  git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/91/5591/2
-- 
To view, visit https://gerrit.libreoffice.org/5591
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newpatchset
Gerrit-Change-Id: I22d4208b2fad0d8fc59426ba4c8c52122876f646
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Björn Michaelsen bjoern.michael...@canonical.com
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org
Gerrit-Reviewer: Matúš Kukan matus.ku...@gmail.com
Gerrit-Reviewer: Michael Stahl mst...@redhat.com

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


[PATCH] fdo#60924 autoinstall - gbuild/scp2: Move more libs to OOO

2013-08-22 Thread Marcos Souza (via Code Review)
Hello LibreOffice gerrit bot, Björn Michaelsen,

I'd like you to reexamine a change.  Please visit

https://gerrit.libreoffice.org/5571

to look at the new patch set (#4).

Change subject: fdo#60924 autoinstall - gbuild/scp2: Move more libs to OOO
..

fdo#60924 autoinstall - gbuild/scp2: Move more libs to OOO

Change-Id: I973a66c6f805727cfaa5a5663ce4a9c200412a66
---
M Repository.mk
M scp2/source/ooo/file_library_ooo.scp
M scp2/source/ooo/module_hidden_ooo.scp
3 files changed, 15 insertions(+), 134 deletions(-)


  git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/71/5571/4
-- 
To view, visit https://gerrit.libreoffice.org/5571
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newpatchset
Gerrit-Change-Id: I973a66c6f805727cfaa5a5663ce4a9c200412a66
Gerrit-PatchSet: 4
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Marcos Souza marcos.souza@gmail.com
Gerrit-Reviewer: Björn Michaelsen bjoern.michael...@canonical.com
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org

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


[PUSHED] fdo#60924 autoinstall - gbuild/scp2: Move more libs to OOO

2013-08-22 Thread Thorsten Behrens (via Code Review)
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/5571

Approvals:
  LibreOffice gerrit bot: Verified
  Thorsten Behrens: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I973a66c6f805727cfaa5a5663ce4a9c200412a66
Gerrit-PatchSet: 5
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Marcos Souza marcos.souza@gmail.com
Gerrit-Reviewer: Björn Michaelsen bjoern.michael...@canonical.com
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org
Gerrit-Reviewer: Thorsten Behrens tbehr...@suse.com

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


[PATCH] fix connectivity bits in postprocess

2013-08-21 Thread via Code Review
Hello LibreOffice gerrit bot,

I'd like you to reexamine a change.  Please visit

https://gerrit.libreoffice.org/5570

to look at the new patch set (#2).

Change subject: fix connectivity bits in postprocess
..

fix connectivity bits in postprocess

Conflicts:
postprocess/Rdb_services.mk

Change-Id: I843a5ccc0408e267cc2f333044f5b7ba39d1bdea
---
M postprocess/CustomTarget_registry.mk
M postprocess/Rdb_services.mk
2 files changed, 75 insertions(+), 69 deletions(-)


  git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/70/5570/2
-- 
To view, visit https://gerrit.libreoffice.org/5570
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newpatchset
Gerrit-Change-Id: I843a5ccc0408e267cc2f333044f5b7ba39d1bdea
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Björn Michaelsen bjoern.michael...@canonical.com
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org

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


[PATCH] fdo#60924 autoinstall - gbuild/scp2: Move more libs to OOO

2013-08-21 Thread Marcos Souza (via Code Review)
Hello LibreOffice gerrit bot,

I'd like you to reexamine a change.  Please visit

https://gerrit.libreoffice.org/5571

to look at the new patch set (#2).

Change subject: fdo#60924 autoinstall - gbuild/scp2: Move more libs to OOO
..

fdo#60924 autoinstall - gbuild/scp2: Move more libs to OOO

Change-Id: I973a66c6f805727cfaa5a5663ce4a9c200412a66
---
M Repository.mk
M scp2/source/ooo/file_library_ooo.scp
M scp2/source/ooo/module_hidden_ooo.scp
3 files changed, 17 insertions(+), 145 deletions(-)


  git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/71/5571/2
-- 
To view, visit https://gerrit.libreoffice.org/5571
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newpatchset
Gerrit-Change-Id: I973a66c6f805727cfaa5a5663ce4a9c200412a66
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Marcos Souza marcos.souza@gmail.com
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org

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


[PUSHED] fix connectivity bits in postprocess

2013-08-21 Thread via Code Review
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/5570

Approvals:
  LibreOffice gerrit bot: Verified
  Björn Michaelsen: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I843a5ccc0408e267cc2f333044f5b7ba39d1bdea
Gerrit-PatchSet: 3
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Björn Michaelsen bjoern.michael...@canonical.com
Gerrit-Reviewer: Björn Michaelsen bjoern.michael...@canonical.com
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org

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


[PATCH] fdo#60924 autoinstall - gbuild/scp2: Move more libs to OOO

2013-08-21 Thread Marcos Souza (via Code Review)
Hello LibreOffice gerrit bot, Björn Michaelsen,

I'd like you to reexamine a change.  Please visit

https://gerrit.libreoffice.org/5571

to look at the new patch set (#3).

Change subject: fdo#60924 autoinstall - gbuild/scp2: Move more libs to OOO
..

fdo#60924 autoinstall - gbuild/scp2: Move more libs to OOO

Change-Id: I973a66c6f805727cfaa5a5663ce4a9c200412a66
---
M Repository.mk
M scp2/source/ooo/file_library_ooo.scp
M scp2/source/ooo/module_hidden_ooo.scp
3 files changed, 17 insertions(+), 145 deletions(-)


  git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/71/5571/3
-- 
To view, visit https://gerrit.libreoffice.org/5571
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newpatchset
Gerrit-Change-Id: I973a66c6f805727cfaa5a5663ce4a9c200412a66
Gerrit-PatchSet: 3
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Marcos Souza marcos.souza@gmail.com
Gerrit-Reviewer: Björn Michaelsen bjoern.michael...@canonical.com
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org

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


[PUSHED] Re-work 8bit characters in source code, or remove them.

2013-08-20 Thread Michael Meeks (via Code Review)
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/5550

Approvals:
  LibreOffice gerrit bot: Verified
  Michael Meeks: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I93e14d4936c0ffbe03425d4a54bb0e09bc62b3e3
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Michael Meeks michael.me...@suse.com
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org
Gerrit-Reviewer: Michael Meeks michael.me...@suse.com

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


[PATCH] Remove com.sun.star.comp.stoc.RegistryTypeDescriptionProvide...

2013-08-19 Thread Stephan Bergmann (via Code Review)
Hello LibreOffice gerrit bot,

I'd like you to reexamine a change.  Please visit

https://gerrit.libreoffice.org/5514

to look at the new patch set (#2).

Change subject: Remove com.sun.star.comp.stoc.RegistryTypeDescriptionProvider
..

Remove com.sun.star.comp.stoc.RegistryTypeDescriptionProvider

...which had become unused with the new cppuhelper/source/typemanager.cxx.

Change-Id: Ic84d11cc9ecd1e7d73aa2757c14ffd46fa21e890
---
M stoc/Library_bootstrap.mk
M stoc/inc/bootstrapservices.hxx
M stoc/source/bootstrap/services.cxx
D stoc/source/registry_tdprovider/base.hxx
D stoc/source/registry_tdprovider/functiondescription.cxx
D stoc/source/registry_tdprovider/functiondescription.hxx
D stoc/source/registry_tdprovider/methoddescription.cxx
D stoc/source/registry_tdprovider/methoddescription.hxx
D stoc/source/registry_tdprovider/rdbtdp_tdenumeration.cxx
D stoc/source/registry_tdprovider/rdbtdp_tdenumeration.hxx
D stoc/source/registry_tdprovider/structtypedescription.cxx
D stoc/source/registry_tdprovider/structtypedescription.hxx
D stoc/source/registry_tdprovider/td.cxx
D stoc/source/registry_tdprovider/tdcomp.cxx
D stoc/source/registry_tdprovider/tdconsts.cxx
D stoc/source/registry_tdprovider/tdef.cxx
D stoc/source/registry_tdprovider/tdenum.cxx
D stoc/source/registry_tdprovider/tdiface.cxx
D stoc/source/registry_tdprovider/tdmodule.cxx
D stoc/source/registry_tdprovider/tdprop.cxx
D stoc/source/registry_tdprovider/tdprovider.cxx
D stoc/source/registry_tdprovider/tdservice.cxx
D stoc/source/registry_tdprovider/tdsingleton.cxx
M stoc/util/bootstrap.component
24 files changed, 0 insertions(+), 4,504 deletions(-)


  git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/14/5514/2
-- 
To view, visit https://gerrit.libreoffice.org/5514
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newpatchset
Gerrit-Change-Id: Ic84d11cc9ecd1e7d73aa2757c14ffd46fa21e890
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Stephan Bergmann sberg...@redhat.com
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org

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


[PUSHED] Remove com.sun.star.comp.stoc.RegistryTypeDescriptionProvide...

2013-08-19 Thread Stephan Bergmann (via Code Review)
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/5514


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

Gerrit-MessageType: merged
Gerrit-Change-Id: Ic84d11cc9ecd1e7d73aa2757c14ffd46fa21e890
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Stephan Bergmann sberg...@redhat.com
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org

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


[PUSHED] enable binary package option for a set of 'stable' libraries

2013-08-17 Thread David Ostrovsky (via Code Review)
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/4765

Approvals:
  LibreOffice gerrit bot: Verified
  David Ostrovsky: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I8924ba22d178aa4d8e500ae3f484af654a37e87e
Gerrit-PatchSet: 3
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Norbert Thiebaud nthieb...@gmail.com
Gerrit-Reviewer: David Ostrovsky david.ostrov...@gmx.de
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org
Gerrit-Reviewer: Norbert Thiebaud nthieb...@gmail.com
Gerrit-Reviewer: Thorsten Behrens tbehr...@suse.com
Gerrit-Reviewer: Tor Lillqvist t...@iki.fi

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


[MERGE FAILED] enable binary package option for a set of 'stable' libraries

2013-08-16 Thread Thorsten Behrens (via Code Review)
Thorsten Behrens has submitted this change and it FAILED to merge.

Change subject: enable binary package option for a set of 'stable' libraries
..


Your change could not be merged due to a path conflict.

Please merge (or rebase) the change locally and upload the resolution for 
review.

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

Gerrit-MessageType: merge-failed
Gerrit-Change-Id: I8924ba22d178aa4d8e500ae3f484af654a37e87e
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Norbert Thiebaud nthieb...@gmail.com
Gerrit-Reviewer: David Ostrovsky david.ostrov...@gmx.de
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org
Gerrit-Reviewer: Norbert Thiebaud nthieb...@gmail.com
Gerrit-Reviewer: Thorsten Behrens tbehr...@suse.com
Gerrit-Reviewer: Tor Lillqvist t...@iki.fi

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


[PATCH] enable binary package option for a set of 'stable' libraries

2013-08-16 Thread David Ostrovsky (via Code Review)
Hello LibreOffice gerrit bot, Thorsten Behrens,

I'd like you to reexamine a change.  Please visit

https://gerrit.libreoffice.org/4765

to look at the new patch set (#2).

Change subject: enable binary package option for a set of 'stable' libraries
..

enable binary package option for a set of 'stable' libraries

Change-Id: I8924ba22d178aa4d8e500ae3f484af654a37e87e
---
M apache-commons/Module_apache-commons.mk
M apache-commons/UnpackedTarball_apache_commons_httpclient.mk
M apache-commons/UnpackedTarball_apache_commons_lang.mk
M apache-commons/UnpackedTarball_apache_commons_logging.mk
M beanshell/UnpackedTarball_beanshell.mk
M cairo/UnpackedTarball_cairo.mk
M cairo/UnpackedTarball_pixman.mk
M cppunit/UnpackedTarball_cppunit.mk
M curl/UnpackedTarball_curl.mk
M epm/UnpackedTarball_epm.mk
M fontconfig/UnpackedTarball_fontconfig.mk
M freetype/UnpackedTarball_freetype.mk
M harfbuzz/UnpackedTarball_harfbuzz.mk
M hsqldb/UnpackedTarball_hsqldb.mk
M liblangtag/UnpackedTarball_langtag.mk
M libxml2/UnpackedTarball_xml2.mk
M libxmlsec/UnpackedTarball_xmlsec.mk
M openldap/UnpackedTarball_openldap.mk
M openssl/UnpackedTarball_openssl.mk
M poppler/UnpackedTarball_poppler.mk
M postgresql/UnpackedTarball_postgresql.mk
M python3/UnpackedTarball_python3.mk
M redland/UnpackedTarball_raptor.mk
M redland/UnpackedTarball_rasqal.mk
M redland/UnpackedTarball_redland.mk
M rhino/UnpackedTarball_rhino.mk
M tomcat/UnpackedTarball_tomcat.mk
27 files changed, 28 insertions(+), 28 deletions(-)


  git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/65/4765/2
-- 
To view, visit https://gerrit.libreoffice.org/4765
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newpatchset
Gerrit-Change-Id: I8924ba22d178aa4d8e500ae3f484af654a37e87e
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Norbert Thiebaud nthieb...@gmail.com
Gerrit-Reviewer: David Ostrovsky david.ostrov...@gmx.de
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org
Gerrit-Reviewer: Norbert Thiebaud nthieb...@gmail.com
Gerrit-Reviewer: Thorsten Behrens tbehr...@suse.com
Gerrit-Reviewer: Tor Lillqvist t...@iki.fi

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


[PUSHED] Bug # 51154: cppunit warning cleaning

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

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/5424

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


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I6f1cae812c58e3791c2386a1288501cf2f559610
Gerrit-PatchSet: 3
Gerrit-Project: cppunit
Gerrit-Branch: master
Gerrit-Owner: Tobias Lippert d...@fastmail.fm
Gerrit-Reviewer: Stephan Bergmann sberg...@redhat.com
Gerrit-Reviewer: Tobias Lippert d...@fastmail.fm
Gerrit-Reviewer: Tor Lillqvist t...@iki.fi

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


[PATCH] Help button added to the aboutconfigvalue dialog

2013-08-14 Thread via Code Review
Hi,

I would like you to review the following patch:

https://gerrit.libreoffice.org/5421

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/21/5421/1

Help button added to the aboutconfigvalue dialog

Change-Id: Id47fafe67c20de5b163f7a4a04d2475297664c54
---
M cui/source/options/optaboutconfig.cxx
M cui/source/options/optaboutconfig.hxx
M cui/uiconfig/ui/aboutconfigvaluedialog.ui
3 files changed, 15 insertions(+), 5 deletions(-)



diff --git a/cui/source/options/optaboutconfig.cxx 
b/cui/source/options/optaboutconfig.cxx
index 30b79d8..2e9c670 100644
--- a/cui/source/options/optaboutconfig.cxx
+++ b/cui/source/options/optaboutconfig.cxx
@@ -335,8 +335,6 @@
 CuiAboutConfigValueDialog::CuiAboutConfigValueDialog( Window* pWindow, const 
OUString rValue )
 :ModalDialog( pWindow, AboutConfigValueDialog, 
cui/ui/aboutconfigvaluedialog.ui )
 {
-get(m_pBtnOK, ok);
-get(m_pBtnCancel, cancel);
 get(m_pEDValue, valuebox);
 
 m_pEDValue-SetText( rValue );
diff --git a/cui/source/options/optaboutconfig.hxx 
b/cui/source/options/optaboutconfig.hxx
index df1a84c..f2d6335 100644
--- a/cui/source/options/optaboutconfig.hxx
+++ b/cui/source/options/optaboutconfig.hxx
@@ -57,9 +57,6 @@
 class CuiAboutConfigValueDialog : public ModalDialog
 {
 private:
-OKButton*m_pBtnOK;
-CancelButton*m_pBtnCancel;
-
 VclMultiLineEdit*m_pEDValue;
 
 public:
diff --git a/cui/uiconfig/ui/aboutconfigvaluedialog.ui 
b/cui/uiconfig/ui/aboutconfigvaluedialog.ui
index deeab7a..b00c062 100644
--- a/cui/uiconfig/ui/aboutconfigvaluedialog.ui
+++ b/cui/uiconfig/ui/aboutconfigvaluedialog.ui
@@ -45,6 +45,20 @@
 property name=position1/property
   /packing
 /child
+child
+  object class=GtkButton id=help
+property name=labelgtk-help/property
+property name=visibleTrue/property
+property name=can_focusTrue/property
+property name=receives_defaultTrue/property
+property name=use_stockTrue/property
+  /object
+  packing
+property name=expandFalse/property
+property name=fillTrue/property
+property name=position2/property
+  /packing
+/child
   /object
   packing
 property name=expandFalse/property
@@ -98,6 +112,7 @@
 action-widgets
   action-widget response=0ok/action-widget
   action-widget response=0cancel/action-widget
+  action-widget response=0help/action-widget
 /action-widgets
   /object
 /interface

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Id47fafe67c20de5b163f7a4a04d2475297664c54
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Efe Gürkan Yalaman efeyala...@gmail.com
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org

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


[PUSHED] Help button added to the aboutconfigvalue dialog

2013-08-14 Thread Thorsten Behrens (via Code Review)
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/5421

Approvals:
  LibreOffice gerrit bot: Verified
  Thorsten Behrens: Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: Id47fafe67c20de5b163f7a4a04d2475297664c54
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Efe Gürkan Yalaman efeyala...@gmail.com
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org
Gerrit-Reviewer: Thorsten Behrens tbehr...@suse.com

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


[PATCH] Bug # 51154: cppunit warning cleaning

2013-08-14 Thread Tobias Lippert (via Code Review)
Hi,

I would like you to review the following patch:

https://gerrit.libreoffice.org/5424

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/cppunit refs/changes/24/5424/1

Bug # 51154: cppunit warning cleaning

This patch allows to compile the code with gcc's -Weffc++

It consists mostly of making copy constructors and assignment operators
explicit and private, and of initializing all members in initializer lists.

Change-Id: I6f1cae812c58e3791c2386a1288501cf2f559610
---
M include/cppunit/Message.h
M include/cppunit/Protector.h
M include/cppunit/SynchronizedObject.h
M include/cppunit/XmlOutputter.h
M include/cppunit/plugin/PlugInManager.h
M include/cppunit/ui/text/TextTestRunner.h
M src/cppunit/DynamicLibraryManagerException.cpp
M src/cppunit/Exception.cpp
M src/cppunit/Message.cpp
M src/cppunit/PlugInManager.cpp
M src/cppunit/ProtectorChain.cpp
M src/cppunit/ProtectorChain.h
M src/cppunit/ProtectorContext.h
M src/cppunit/SourceLine.cpp
M src/cppunit/TestCase.cpp
M src/cppunit/TestFactoryRegistry.cpp
M src/cppunit/TestNamer.cpp
M src/cppunit/TestPath.cpp
M src/cppunit/TestResult.cpp
M src/cppunit/TestResultCollector.cpp
M src/cppunit/TestSuite.cpp
M src/cppunit/TestSuiteBuilderContext.cpp
M src/cppunit/XmlDocument.cpp
M src/cppunit/XmlElement.cpp
M src/cppunit/XmlOutputter.cpp
25 files changed, 86 insertions(+), 24 deletions(-)



diff --git a/include/cppunit/Message.h b/include/cppunit/Message.h
index 7c462d5..5b5e4ec 100644
--- a/include/cppunit/Message.h
+++ b/include/cppunit/Message.h
@@ -38,7 +38,7 @@
 class CPPUNIT_API Message
 {
 public:
-  Message();
+  Message() {};
 
   // Ensure thread-safe copy by detaching the string.
   Message( const Message other );
@@ -57,7 +57,7 @@
const std::string detail2,
const std::string detail3 );
 
-  ~Message();
+  virtual ~Message();
 
   Message operator =( const Message other );
 
diff --git a/include/cppunit/Protector.h b/include/cppunit/Protector.h
index d14e75f..c6d2e7c 100644
--- a/include/cppunit/Protector.h
+++ b/include/cppunit/Protector.h
@@ -84,6 +84,8 @@
   ~ProtectorGuard();
 
 private:
+  ProtectorGuard( const ProtectorGuard ); /* not copyable */
+  ProtectorGuard operator=( const ProtectorGuard ); /* not assignable */
   TestResult *m_result;
 };
 
diff --git a/include/cppunit/SynchronizedObject.h 
b/include/cppunit/SynchronizedObject.h
index 0f7d094..59c3cbb 100644
--- a/include/cppunit/SynchronizedObject.h
+++ b/include/cppunit/SynchronizedObject.h
@@ -50,15 +50,21 @@
 
   public:
 ExclusiveZone( SynchronizationObject *syncObject ) 
-: m_syncObject( syncObject ) 
+: m_syncObject( syncObject )
 { 
-  m_syncObject-lock(); 
+  m_syncObject-lock();
 }
 
 ~ExclusiveZone() 
 { 
-  m_syncObject-unlock (); 
+  m_syncObject-unlock ();
 }
+  private:
+/// Prevents the use of the copy constructor.
+ExclusiveZone( const ExclusiveZone );
+
+/// Prevents the use of the copy operator.
+ExclusiveZone operator=( const ExclusiveZone );
   };
 
   virtual void setSynchronizationObject( SynchronizationObject *syncObject );
diff --git a/include/cppunit/XmlOutputter.h b/include/cppunit/XmlOutputter.h
index 0de9676..da8164a 100644
--- a/include/cppunit/XmlOutputter.h
+++ b/include/cppunit/XmlOutputter.h
@@ -46,7 +46,7 @@
*/
   XmlOutputter( TestResultCollector *result,
 OStream stream,
-std::string encoding = std::string(ISO-8859-1) );
+const std::string encoding = std::string(ISO-8859-1) );
 
   /// Destructor.
   virtual ~XmlOutputter();
diff --git a/include/cppunit/plugin/PlugInManager.h 
b/include/cppunit/plugin/PlugInManager.h
index 6ecedc8..bdc4e9f 100644
--- a/include/cppunit/plugin/PlugInManager.h
+++ b/include/cppunit/plugin/PlugInManager.h
@@ -74,6 +74,8 @@
   void removeXmlOutputterHooks();
 
 protected:
+// disable warnings for PODs
+#pragma GCC diagnostic ignored -Weffc++
   /*! \brief (INTERNAL) Information about a specific plug-in.
*/
   struct PlugInInfo
@@ -82,6 +84,7 @@
 DynamicLibraryManager *m_manager;
 CppUnitTestPlugIn *m_interface;
   };
+#pragma GCC diagnostic pop
 
   /*! Unloads the specified plug-in.
* \param plugIn Information about the plug-in.
diff --git a/include/cppunit/ui/text/TextTestRunner.h 
b/include/cppunit/ui/text/TextTestRunner.h
index 86da4d4..6250166 100644
--- a/include/cppunit/ui/text/TextTestRunner.h
+++ b/include/cppunit/ui/text/TextTestRunner.h
@@ -86,6 +86,12 @@
   virtual void wait( bool doWait );
   virtual void printResult( bool doPrintResult );
 
+private:
+  // prohibit copying
+  TextTestRunner( const TextTestRunner );
+  // prohibit copying
+  TextTestRunner operator=( const TextTestRunner );
+
   TestResultCollector *m_result;
   TestResult *m_eventManager;
   Outputter *m_outputter;
diff --git a/src/cppunit/DynamicLibraryManagerException.cpp 
b/src/cppunit/DynamicLibraryManagerException.cpp
index 8498652..d5a89d8 100644
--- 

[PATCH] Change String to OUString in some class and functions.

2013-08-12 Thread via Code Review
Hello Stephan Bergmann, Norbert Thiebaud,

I'd like you to reexamine a change.  Please visit

https://gerrit.libreoffice.org/5311

to look at the new patch set (#5).

Change subject: Change String to OUString in some class and functions.
..

Change String to OUString in some class and functions.

I changed String class to OUString class in the following:
CSS1Selector, SvxCSS1PropertyInfo, SvxCSS1MapEntry, SwHTMLWrtTable,
SwHTMLForm_Impl, HTMLTable classes, CSS1Expression,
SwHTMLFootEndNote_Impl, HTMLTableOptions structs and function in these
files htmldraw.cxx, htmlfldw.cxx, htmlfly.cxx, htmlform.cxx,
htmlforw.cxx, htmlftn.cxx, htmlnum.cxx, htmlplug.cxx file's function.

Change-Id: I5f3c3351157b8ba1c6b4fbb15d42acd61225f006
---
M sw/source/filter/html/htmlcss1.cxx
M sw/source/filter/html/htmlctxt.cxx
M sw/source/filter/html/htmldraw.cxx
M sw/source/filter/html/htmlfldw.cxx
M sw/source/filter/html/htmlfly.cxx
M sw/source/filter/html/htmlform.cxx
M sw/source/filter/html/htmlforw.cxx
M sw/source/filter/html/htmlftn.cxx
M sw/source/filter/html/htmlgrin.cxx
M sw/source/filter/html/htmlnum.cxx
M sw/source/filter/html/htmlplug.cxx
M sw/source/filter/html/htmlsect.cxx
M sw/source/filter/html/htmltab.cxx
M sw/source/filter/html/htmltabw.cxx
M sw/source/filter/html/parcss1.cxx
M sw/source/filter/html/parcss1.hxx
M sw/source/filter/html/svxcss1.cxx
M sw/source/filter/html/svxcss1.hxx
M sw/source/filter/html/swhtml.cxx
M sw/source/filter/html/swhtml.hxx
M sw/source/filter/html/wrthtml.hxx
21 files changed, 388 insertions(+), 417 deletions(-)


  git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/11/5311/5
-- 
To view, visit https://gerrit.libreoffice.org/5311
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newpatchset
Gerrit-Change-Id: I5f3c3351157b8ba1c6b4fbb15d42acd61225f006
Gerrit-PatchSet: 5
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Mihály Palenik palenik.mih...@gmail.com
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org
Gerrit-Reviewer: Norbert Thiebaud nthieb...@gmail.com
Gerrit-Reviewer: Stephan Bergmann sberg...@redhat.com
Gerrit-Reviewer: Tor Lillqvist t...@iki.fi

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


[PUSHED] Change String to OUString in some class and functions.

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

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/5311

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


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I5f3c3351157b8ba1c6b4fbb15d42acd61225f006
Gerrit-PatchSet: 6
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Mihály Palenik palenik.mih...@gmail.com
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org
Gerrit-Reviewer: Norbert Thiebaud nthieb...@gmail.com
Gerrit-Reviewer: Stephan Bergmann sberg...@redhat.com
Gerrit-Reviewer: Tor Lillqvist t...@iki.fi

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


[PATCH] Change String to OUString in some class and functions.

2013-08-09 Thread via Code Review
Hello Stephan Bergmann, Norbert Thiebaud,

I'd like you to reexamine a change.  Please visit

https://gerrit.libreoffice.org/5311

to look at the new patch set (#4).

Change subject: Change String to OUString in some class and functions.
..

Change String to OUString in some class and functions.

I changed String class to OUString class in the following:
CSS1Selector, SvxCSS1PropertyInfo, SvxCSS1MapEntry, SwHTMLWrtTable,
SwHTMLForm_Impl, HTMLTable classes, CSS1Expression,
SwHTMLFootEndNote_Impl, HTMLTableOptions structs and function in these
files htmldraw.cxx, htmlfldw.cxx, htmlfly.cxx, htmlform.cxx,
htmlforw.cxx, htmlftn.cxx, htmlnum.cxx, htmlplug.cxx file's function.

Change-Id: I5f3c3351157b8ba1c6b4fbb15d42acd61225f006
---
M sw/source/filter/html/htmlcss1.cxx
M sw/source/filter/html/htmlctxt.cxx
M sw/source/filter/html/htmldraw.cxx
M sw/source/filter/html/htmlfldw.cxx
M sw/source/filter/html/htmlfly.cxx
M sw/source/filter/html/htmlform.cxx
M sw/source/filter/html/htmlforw.cxx
M sw/source/filter/html/htmlftn.cxx
M sw/source/filter/html/htmlgrin.cxx
M sw/source/filter/html/htmlnum.cxx
M sw/source/filter/html/htmlplug.cxx
M sw/source/filter/html/htmlsect.cxx
M sw/source/filter/html/htmltab.cxx
M sw/source/filter/html/htmltabw.cxx
M sw/source/filter/html/parcss1.cxx
M sw/source/filter/html/parcss1.hxx
M sw/source/filter/html/svxcss1.cxx
M sw/source/filter/html/svxcss1.hxx
M sw/source/filter/html/swhtml.cxx
M sw/source/filter/html/swhtml.hxx
M sw/source/filter/html/wrthtml.hxx
21 files changed, 388 insertions(+), 417 deletions(-)


  git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/11/5311/4
-- 
To view, visit https://gerrit.libreoffice.org/5311
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newpatchset
Gerrit-Change-Id: I5f3c3351157b8ba1c6b4fbb15d42acd61225f006
Gerrit-PatchSet: 4
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Mihály Palenik palenik.mih...@gmail.com
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org
Gerrit-Reviewer: Norbert Thiebaud nthieb...@gmail.com
Gerrit-Reviewer: Stephan Bergmann sberg...@redhat.com
Gerrit-Reviewer: Tor Lillqvist t...@iki.fi

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


[PUSHED] Add code to spy on Pages text component.

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

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/5289

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


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I0150a79c313e2f0dca8651befd819095bf9d74ea
Gerrit-PatchSet: 2
Gerrit-Project: dev-tools
Gerrit-Branch: master
Gerrit-Owner: Boris Dušek m...@dusek.me
Gerrit-Reviewer: Norbert Thiebaud nthieb...@gmail.com

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


[PUSHED] Change String to OUString in some class.

2013-08-06 Thread Miklos Vajna (via Code Review)
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/5234

Approvals:
  LibreOffice gerrit bot: Verified
  Miklos Vajna: Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I5d474a62c28ff3ee3848abb414acdf1b69492278
Gerrit-PatchSet: 3
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Mihály Palenik palenik.mih...@gmail.com
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org
Gerrit-Reviewer: Miklos Vajna vmik...@suse.cz
Gerrit-Reviewer: Norbert Thiebaud nthieb...@gmail.com

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


[PATCH libreoffice-4-1] add sid auxiliary files

2013-08-06 Thread Andras Timar (via Code Review)
Hi,

I would like you to review the following patch:

https://gerrit.libreoffice.org/5294

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/help refs/changes/94/5294/1

add sid auxiliary files

Change-Id: Iec7caac1f2c3c4f96db69adb9ecd696f420e7e6c
---
A source/auxiliary/sid/default.css
A source/auxiliary/sid/highcontrast1.css
A source/auxiliary/sid/highcontrast2.css
A source/auxiliary/sid/highcontrastblack.css
A source/auxiliary/sid/highcontrastwhite.css
A source/auxiliary/sid/sbasic.cfg
A source/auxiliary/sid/scalc.cfg
A source/auxiliary/sid/schart.cfg
A source/auxiliary/sid/sdatabase.cfg
A source/auxiliary/sid/sdraw.cfg
A source/auxiliary/sid/simpress.cfg
A source/auxiliary/sid/smath.cfg
A source/auxiliary/sid/swriter.cfg
13 files changed, 745 insertions(+), 0 deletions(-)



diff --git a/source/auxiliary/sid/default.css b/source/auxiliary/sid/default.css
new file mode 100644
index 000..d48c646
--- /dev/null
+++ b/source/auxiliary/sid/default.css
@@ -0,0 +1,108 @@
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the License); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+ */
+
+/*
++
++  OPENOFFICE.ORG 2.0 HELP  +
++  DEFAULT STYLESHEET   +
++   WESTERN LANGUAGES   +
++
++ LAST CHANGES: 15-NOV-2004 +
++
+*/
+
+
+body, p, h1, h2, h3, h4, h5, h6, .listitem, .listitemintable, .tablecontent, 
.tablecontentintable
+   { font-family: Albany AMT,Albany,Arial,Nimbus Sans L,Bitstream 
Vera Sans,Helvetica,Lucida,Geneva,Helmet,Andale Sans UI,Arial Unicode 
MS,Lucida Sans Unicode,Tahoma,sans-serif; }
+
+pre, .code, .codeintable, .example, .exampleintable, .literal, 
.literalintable, .path, .pathintable
+   { font-family: Cumberland AMT,Cumberland,Courier New,Nimbus Mono 
L,Bitstream Vera Sans Mono,Courier,Lucida Sans Typewriter,Lucida 
Typewriter,Monaco,Monospaced; margin-top: 1pt; margin-bottom: 1pt;}
+
+.acronym 
+   { font-weight: bold; }
+
+.related
+   { font-weight: bold; margin-top:20pt; border-top: 1px solid black;}
+
+.emph, .menuitem, .keycode
+   { font-weight: bold; }
+
+.tablehead, .tableheadintable
+   { font-weight: bold; margin-top: 0px;}
+
+.howtogetheader
+   { font-weight: bold; border: 1px solid #99; background: #FF; 
padding: 3px;}
+
+h1, h2, h3, h4, h5, h6
+   { margin-bottom: 5pt; }
+
+p, td
+   { font-size: 10pt; margin-top: 2px; margin-bottom: 2px;}
+
+h1
+   { font-size: 18pt; border-bottom: 1px solid black; padding-bottom: 6px; 
margin-bottom: 6px;}
+
+h2
+   { font-size: 14pt; }
+
+h3
+   { font-size: 12pt; }
+
+h4, h5, h6
+   { font-size: 10pt; }
+
+.relatedtopics
+   { font-weight: normal; }
+
+.relatedbody  
+   { margin-top: 2px; margin-bottom: 2px; margin-left: 5px; }
+
+.howtoget
+   { background:#EE;}
+
+.howtogetbody
+   { background:#EE; margin: 0px;}
+
+.wide 
+   { width: 100%; }
+
+.topalign
+{ vertical-align: top; border: 1px;}
+
+.bug 
+   { color: red; border: 1px solid red;}
+
+.debug
+   { border: 1px solid black; padding: 3px; display: none;}
+
+/* Basic code syntax highlight */
+.identifier, .unknown
+   { color: green;}
+
+.keyword 
+   { color: blue;}
+
+.comment
+   { color: gray;}
+
+.number, .string
+   { color: red;}
+
+.operator, .parameter
+   { color: black;}
+
diff --git a/source/auxiliary/sid/highcontrast1.css 
b/source/auxiliary/sid/highcontrast1.css
new file mode 100644
index 000..ba39fb2
--- /dev/null
+++ b/source/auxiliary/sid/highcontrast1.css
@@ -0,0 +1,109 @@
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the 

[PUSHED libreoffice-4-1] add sid auxiliary files

2013-08-06 Thread Christian Lohmaier (via Code Review)
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/5294

Approvals:
  Christian Lohmaier: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: Iec7caac1f2c3c4f96db69adb9ecd696f420e7e6c
Gerrit-PatchSet: 2
Gerrit-Project: help
Gerrit-Branch: libreoffice-4-1
Gerrit-Owner: Andras Timar ati...@suse.com
Gerrit-Reviewer: Christian Lohmaier lohmaier+libreoff...@googlemail.com

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


[MERGE FAILED] Change String class to OUString class in two files.

2013-08-05 Thread Miklos Vajna (via Code Review)
Miklos Vajna has submitted this change and it FAILED to merge.

Change subject: Change String class to OUString class in two files.
..


Your change could not be merged due to a path conflict.

Please merge (or rebase) the change locally and upload the resolution for 
review.

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

Gerrit-MessageType: merge-failed
Gerrit-Change-Id: I3d05c9705d221b5abe02d09845cd3cdc5381e201
Gerrit-PatchSet: 4
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Mihály Palenik palenik.mih...@gmail.com
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org
Gerrit-Reviewer: Mihály Palenik palenik.mih...@gmail.com
Gerrit-Reviewer: Miklos Vajna vmik...@suse.cz
Gerrit-Reviewer: Norbert Thiebaud nthieb...@gmail.com

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


[PATCH] Change String class to OUString class in two files.

2013-08-05 Thread via Code Review
Hello Miklos Vajna, LibreOffice gerrit bot, Norbert Thiebaud,

I'd like you to reexamine a change.  Please visit

https://gerrit.libreoffice.org/5091

to look at the new patch set (#5).

Change subject: Change String class to OUString class in two files.
..

Change String class to OUString class in two files.

I changed String class to OUString class in htmlatr.cxx and
htmlbas.cxx and their dependencies.

Change-Id: I3d05c9705d221b5abe02d09845cd3cdc5381e201
---
M include/svtools/htmlout.hxx
M svtools/source/svhtml/htmlout.cxx
M sw/source/filter/html/htmlatr.cxx
M sw/source/filter/html/htmlbas.cxx
M sw/source/filter/html/htmlfldw.cxx
M sw/source/filter/html/htmlgrin.cxx
M sw/source/filter/html/swhtml.hxx
M sw/source/filter/html/wrthtml.hxx
8 files changed, 145 insertions(+), 147 deletions(-)


  git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/91/5091/5
-- 
To view, visit https://gerrit.libreoffice.org/5091
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newpatchset
Gerrit-Change-Id: I3d05c9705d221b5abe02d09845cd3cdc5381e201
Gerrit-PatchSet: 5
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Mihály Palenik palenik.mih...@gmail.com
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org
Gerrit-Reviewer: Mihály Palenik palenik.mih...@gmail.com
Gerrit-Reviewer: Miklos Vajna vmik...@suse.cz
Gerrit-Reviewer: Norbert Thiebaud nthieb...@gmail.com

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


[PATCH] Change String class to OUString class in two files.

2013-08-05 Thread Miklos Vajna (via Code Review)
Hello LibreOffice gerrit bot, Norbert Thiebaud,

I'd like you to reexamine a change.  Please visit

https://gerrit.libreoffice.org/5091

to look at the new patch set (#6).

Change subject: Change String class to OUString class in two files.
..

Change String class to OUString class in two files.

I changed String class to OUString class in htmlatr.cxx and
htmlbas.cxx and their dependencies.

Change-Id: I3d05c9705d221b5abe02d09845cd3cdc5381e201
Reviewed-on: https://gerrit.libreoffice.org/5091
---
M include/svtools/htmlout.hxx
M svtools/source/svhtml/htmlout.cxx
M sw/source/filter/html/htmlatr.cxx
M sw/source/filter/html/htmlbas.cxx
M sw/source/filter/html/htmlfldw.cxx
M sw/source/filter/html/htmlgrin.cxx
M sw/source/filter/html/swhtml.hxx
M sw/source/filter/html/wrthtml.hxx
8 files changed, 145 insertions(+), 147 deletions(-)


  git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/91/5091/6
-- 
To view, visit https://gerrit.libreoffice.org/5091
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newpatchset
Gerrit-Change-Id: I3d05c9705d221b5abe02d09845cd3cdc5381e201
Gerrit-PatchSet: 6
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Mihály Palenik palenik.mih...@gmail.com
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org
Gerrit-Reviewer: Mihály Palenik palenik.mih...@gmail.com
Gerrit-Reviewer: Miklos Vajna vmik...@suse.cz
Gerrit-Reviewer: Norbert Thiebaud nthieb...@gmail.com

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


[PUSHED] Change String class to OUString class in two files.

2013-08-05 Thread Miklos Vajna (via Code Review)
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/5091


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I3d05c9705d221b5abe02d09845cd3cdc5381e201
Gerrit-PatchSet: 6
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Mihály Palenik palenik.mih...@gmail.com
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org
Gerrit-Reviewer: Mihály Palenik palenik.mih...@gmail.com
Gerrit-Reviewer: Miklos Vajna vmik...@suse.cz
Gerrit-Reviewer: Norbert Thiebaud nthieb...@gmail.com

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


[PATCH] Add code to spy on Pages text component.

2013-08-05 Thread via Code Review
Hi,

I would like you to review the following patch:

https://gerrit.libreoffice.org/5289

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/dev-tools refs/changes/89/5289/1

Add code to spy on Pages text component.

Change-Id: I0150a79c313e2f0dca8651befd819095bf9d74ea
---
M NSAXSpy/NSAXSpy/main.m
1 file changed, 20 insertions(+), 0 deletions(-)



diff --git a/NSAXSpy/NSAXSpy/main.m b/NSAXSpy/NSAXSpy/main.m
index e96ed40..47490f1 100644
--- a/NSAXSpy/NSAXSpy/main.m
+++ b/NSAXSpy/NSAXSpy/main.m
@@ -154,6 +154,26 @@
 return err;
 }
 
+static AXError findPagesTextComponent(AXObserverCallback callback, 
AXObserverRef *observer, AXUIElementRef *component) {
+AXError err = kAXErrorSuccess;
+AX_APPLICATION(@Pages, Pages, callback, observer) {
+AX_CHILD(Pages, Window, 0, window) {
+AX_CHILD(window, SplitGroup, 0, splitGroup) {
+AX_CHILD(splitGroup, ScrollArea, 0, scrollArea) {
+AX_CHILD(scrollArea, LayoutArea, 0, layoutArea) {
+AX_CHILD(layoutArea, Group, 0, group) {
+AX_CHILD(group, TextArea, 0, textArea) {
+*component = textArea;
+}
+}
+}
+}
+}
+}
+}
+return err;
+}
+
 static AXError reportOnAXTextArea(AXUIElementRef textArea) {
 AXError err = kAXErrorSuccess;
 AX_VALUE(textArea, CFNumberRef, length, NumberOfCharacters) {

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I0150a79c313e2f0dca8651befd819095bf9d74ea
Gerrit-PatchSet: 1
Gerrit-Project: dev-tools
Gerrit-Branch: master
Gerrit-Owner: Boris Dušek m...@dusek.me

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


[PATCH] fdo#67235 adapt form control code to time nanosecond API cha...

2013-08-04 Thread Lionel Elie Mamane (via Code Review)
Hello LibreOffice gerrit bot,

I'd like you to reexamine a change.  Please visit

https://gerrit.libreoffice.org/5270

to look at the new patch set (#2).

Change subject: fdo#67235 adapt form control code to time nanosecond API 
change, step 3
..

fdo#67235 adapt form control code to time nanosecond API change, step 3

Change-Id: I4899c89ee5b2a54c9c05b531ab284365f1558e3d
---
M extensions/source/propctrlr/formcomponenthandler.cxx
M extensions/source/propctrlr/standardcontrol.cxx
M forms/source/component/Date.cxx
M forms/source/component/Time.cxx
M framework/source/services/license.cxx
M include/toolkit/awt/vclxwindows.hxx
M include/toolkit/controls/unocontrolbase.hxx
M include/toolkit/controls/unocontrols.hxx
M include/toolkit/helper/property.hxx
M include/tools/date.hxx
M include/tools/time.hxx
M odk/examples/DevelopersGuide/GUI/UnoDialogSample.java
M offapi/com/sun/star/awt/UnoControlDateFieldModel.idl
M offapi/com/sun/star/awt/UnoControlTimeFieldModel.idl
M offapi/com/sun/star/awt/XDateField.idl
M offapi/com/sun/star/awt/XTimeField.idl
M offapi/type_reference/offapi.rdb
M qadevOOo/tests/java/ifc/awt/_XDateField.java
M qadevOOo/tests/java/ifc/awt/_XTimeField.java
M svx/source/fmcomp/gridcell.cxx
M svx/source/form/fmobjfac.cxx
M toolkit/source/awt/vclxwindows.cxx
M toolkit/source/controls/unocontrolbase.cxx
M toolkit/source/controls/unocontrolmodel.cxx
M toolkit/source/controls/unocontrols.cxx
M toolkit/source/helper/property.cxx
M tools/source/datetime/ttime.cxx
M xmloff/source/forms/handler/vcl_date_handler.cxx
M xmloff/source/forms/handler/vcl_time_handler.cxx
29 files changed, 368 insertions(+), 367 deletions(-)


  git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/70/5270/2
-- 
To view, visit https://gerrit.libreoffice.org/5270
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newpatchset
Gerrit-Change-Id: I4899c89ee5b2a54c9c05b531ab284365f1558e3d
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Lionel Elie Mamane lio...@mamane.lu
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org
Gerrit-Reviewer: Lionel Elie Mamane lio...@mamane.lu
Gerrit-Reviewer: Norbert Thiebaud nthieb...@gmail.com
Gerrit-Reviewer: Petr Mladek pmla...@suse.cz
Gerrit-Reviewer: Stephan Bergmann sberg...@redhat.com
Gerrit-Reviewer: Thorsten Behrens tbehr...@suse.com

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


[PUSHED] fdo#67235 adapt form control code to time nanosecond API cha...

2013-08-04 Thread Lionel Elie Mamane (via Code Review)
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/5270

Approvals:
  Lionel Elie Mamane: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I4899c89ee5b2a54c9c05b531ab284365f1558e3d
Gerrit-PatchSet: 3
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Lionel Elie Mamane lio...@mamane.lu
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org
Gerrit-Reviewer: Lionel Elie Mamane lio...@mamane.lu
Gerrit-Reviewer: Norbert Thiebaud nthieb...@gmail.com
Gerrit-Reviewer: Petr Mladek pmla...@suse.cz
Gerrit-Reviewer: Stephan Bergmann sberg...@redhat.com
Gerrit-Reviewer: Thorsten Behrens tbehr...@suse.com

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


[PUSHED] update help ids for date time dialog .ui conversion

2013-08-02 Thread via Code Review
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/5214

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


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

Gerrit-MessageType: merged
Gerrit-Change-Id: Icbdc3b9cab375db8caf694c65ada055d70f59753
Gerrit-PatchSet: 2
Gerrit-Project: help
Gerrit-Branch: master
Gerrit-Owner: Tamás Csikós csks.t...@gmail.com
Gerrit-Reviewer: Caolán McNamara caol...@redhat.com

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


[PATCH] fdo#67235 adapt form control code to time nanosecond API cha...

2013-08-02 Thread Lionel Elie Mamane (via Code Review)
Lionel Elie Mamane has created a new patch set by issuing a rebase in Gerrit 
(#2).

Change subject: fdo#67235 adapt form control code to time nanosecond API change
..

fdo#67235 adapt form control code to time nanosecond API change

Conflicts:
offapi/type_reference/offapi.rdb

Change-Id: If68ecf0691919d71d06d7b97d46db115013f9805
---
M include/toolkit/awt/vclxwindows.hxx
M include/toolkit/controls/unocontrolbase.hxx
M include/toolkit/controls/unocontrols.hxx
M include/toolkit/helper/property.hxx
M offapi/com/sun/star/awt/XTimeField.idl
M offapi/type_reference/offapi.rdb
M qadevOOo/tests/java/ifc/awt/_XTimeField.java
M svx/source/fmcomp/gridcell.cxx
M svx/source/form/fmobjfac.cxx
M toolkit/source/awt/vclxwindows.cxx
M toolkit/source/controls/unocontrolbase.cxx
M toolkit/source/controls/unocontrolmodel.cxx
M toolkit/source/controls/unocontrols.cxx
M toolkit/source/helper/property.cxx
M vcl/source/control/field2.cxx
M xmloff/source/forms/handler/vcl_time_handler.cxx
16 files changed, 155 insertions(+), 150 deletions(-)


  git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/49/5149/2
-- 
To view, visit https://gerrit.libreoffice.org/5149
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newpatchset
Gerrit-Change-Id: If68ecf0691919d71d06d7b97d46db115013f9805
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Lionel Elie Mamane lio...@mamane.lu
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org
Gerrit-Reviewer: Lionel Elie Mamane lio...@mamane.lu
Gerrit-Reviewer: Norbert Thiebaud nthieb...@gmail.com
Gerrit-Reviewer: Petr Mladek pmla...@suse.cz

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


[PUSHED] fdo#67235 adapt form control code to time nanosecond API cha...

2013-08-02 Thread Lionel Elie Mamane (via Code Review)
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/5149

Approvals:
  Lionel Elie Mamane: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: If68ecf0691919d71d06d7b97d46db115013f9805
Gerrit-PatchSet: 3
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Lionel Elie Mamane lio...@mamane.lu
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org
Gerrit-Reviewer: Lionel Elie Mamane lio...@mamane.lu
Gerrit-Reviewer: Norbert Thiebaud nthieb...@gmail.com
Gerrit-Reviewer: Petr Mladek pmla...@suse.cz

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


[PATCH] update help ids for edit dictionary dialog .ui conversion

2013-08-02 Thread via Code Review
Hi,

I would like you to review the following patch:

https://gerrit.libreoffice.org/5248

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/help refs/changes/48/5248/1

update help ids for edit dictionary dialog .ui conversion

Change-Id: Icb6e8a5870b89776583d582d69d296f441ada3bf
---
M helpers/help_hid.lst
M source/text/shared/optionen/01010400.xhp
2 files changed, 11 insertions(+), 17 deletions(-)



diff --git a/helpers/help_hid.lst b/helpers/help_hid.lst
index 769184f..1555b66 100644
--- a/helpers/help_hid.lst
+++ b/helpers/help_hid.lst
@@ -6951,8 +6951,6 @@
 svx_Edit_MD_LINKEDIT_ED_FULL_SOURCE_NAME,1598097409,
 svx_Edit_MD_MENU_ORGANISER_EDIT_MENU_NAME,1079953796,
 svx_Edit_RID_DLG_NEWLIB_ED_LIBNAME,1242335246,
-svx_Edit_RID_SFXDLG_EDITDICT_ED_REPLACE,1270417446,
-svx_Edit_RID_SFXDLG_EDITDICT_ED_WORD,1270417444,
 svx_Edit_RID_SVXDLG_ADD_DATAITEM_ED_DEFAULT,1368852494,
 svx_Edit_RID_SVXDLG_ADD_DATAITEM_ED_NAME,1368852492,
 svx_Edit_RID_SVXDLG_ADD_INSTANCE_ED_INST_NAME,1368950796,
@@ -7105,8 +7103,6 @@
 svx_ListBox_OFA_TP_VIEW_LB_MOUSEPOS,810520095,
 svx_ListBox_RID_OFAPAGE_AUTOCOMPLETE_OPTIONS_DCB_EXPAND_KEY,809160323,
 svx_ListBox_RID_OPTPAGE_CHART_DEFCOLORS_LB_CHART_COLOR_LIST,705613314,
-svx_ListBox_RID_SFXDLG_EDITDICT_LB_ALLDICTS,1270418976,
-svx_ListBox_RID_SFXDLG_EDITDICT_LB_DICTLANG,1270418957,
 svx_ListBox_RID_SVXDLG_ADD_DATAITEM_LB_DATATYPE,1368854034,
 svx_ListBox_RID_SVXDLG_ADD_SUBMISSION_LB_SUBMIT_BIND,1368919573,
 svx_ListBox_RID_SVXDLG_ADD_SUBMISSION_LB_SUBMIT_METHOD,1368919568,
@@ -7414,8 +7410,6 @@
 svx_PushButton_RID_OFAPAGE_AUTOFMT_APPLY_PB_EDIT,809013821,
 svx_PushButton_RID_OFAPAGE_SMARTTAG_OPTIONS_PB_SMARTTAGS,809259743,
 svx_PushButton_RID_OPTPAGE_CHART_DEFCOLORS_PB_RESET_TO_DEFAULT,705614341,
-svx_PushButton_RID_SFXDLG_EDITDICT_PB_DELETE_REPLACE,1270420008,
-svx_PushButton_RID_SFXDLG_EDITDICT_PB_NEW_REPLACE,1270420007,
 svx_PushButton_RID_SFXPAGE_DBREGISTER_BTN_DELETE,809226770,
 svx_PushButton_RID_SFXPAGE_DBREGISTER_BTN_EDIT,809226766,
 svx_PushButton_RID_SFXPAGE_DBREGISTER_BTN_NEW,809226765,
diff --git a/source/text/shared/optionen/01010400.xhp 
b/source/text/shared/optionen/01010400.xhp
index 8c93bd5..1b648d5 100644
--- a/source/text/shared/optionen/01010400.xhp
+++ b/source/text/shared/optionen/01010400.xhp
@@ -80,25 +80,25 @@
 paragraph role=paragraph id=par_id3152576 xml-lang=en-US l10n=U 
oldref=74ahelp 
hid=SVX_PUSHBUTTON_RID_SFXPAGE_LINGU_PB_LINGU_DICS_EDIT_DICOpens the 
emphEdit custom dictionary/emph dialog, in which you can add to your custom 
dictionary or edit existing entries./ahelp/paragraph
 paragraph role=paragraph id=par_id3147436 xml-lang=en-US l10n=U 
oldref=75In the emphEdit custom dictionary /emphdialog you have the 
option to enter new terms or edit existing entries. If you edit an exception 
dictionary, the dialog has the added facility of defining an exception for a 
word. During the spellcheck this exception is then listed as a 
suggestion./paragraph
 paragraph role=paragraph id=par_id3145750 xml-lang=en-US l10n=U 
oldref=76When a dictionary is edited, a check is made on the status of the 
file. If the file is write-protected, it cannot be changed. The buttons 
emphNew/emph and emphDelete/emph are then deactivated. /paragraph
-bookmark xml-lang=en-US 
branch=hid/cui:ListBox:RID_SFXDLG_EDITDICT:LB_ALLDICTS id=bm_id3155415 
localize=false/
+bookmark xml-lang=en-US branch=hid/cui/ui/editdictionarydialog/book 
id=bm_id3155415 localize=false/
 paragraph role=heading id=hd_id3150116 xml-lang=en-US level=3 
l10n=U oldref=77Book/paragraph
-paragraph role=paragraph id=par_id3147394 xml-lang=en-US l10n=U 
oldref=78ahelp hid=SVX:LISTBOX:RID_SFXDLG_EDITDICT:LB_ALLDICTSSpecifies 
the book to be edited./ahelp/paragraph
+paragraph role=paragraph id=par_id3147394 xml-lang=en-US l10n=U 
oldref=78ahelp hid=cui/ui/editdictionarydialog/bookSpecifies the book to 
be edited./ahelp/paragraph
 paragraph role=paragraph id=par_id3154730 xml-lang=en-US l10n=CHG 
oldref=79variable id=ignoreThe emphIgnoreAllList (All) /emphincludes 
all words that have been marked with emphIgnore/emph during spellcheck. 
This list is valid only for the current spellcheck. 
 /variable/paragraph
 paragraph role=note id=par_id3154757 xml-lang=en-US l10n=U 
oldref=80The emphIgnoreAllList/emph entry cannot be selected and cannot 
be deleted. Only the words included as content can be deleted. This happens 
automatically each time that $[officename] is closed./paragraph
-bookmark xml-lang=en-US 
branch=hid/cui:ListBox:RID_SFXDLG_EDITDICT:LB_DICTLANG id=bm_id3156385 
localize=false/
+bookmark xml-lang=en-US branch=hid/cui/ui/editdictionarydialog/lang 
id=bm_id3156385 localize=false/
 paragraph role=heading id=hd_id3149018 xml-lang=en-US level=3 
l10n=U oldref=81Language/paragraph
-paragraph role=paragraph id=par_id3154255 xml-lang=en-US l10n=U 
oldref=82ahelp hid=SVX:LISTBOX:RID_SFXDLG_EDITDICT:LB_DICTLANGAssigns a 
new language to the current custom dictionary./ahelp/paragraph

[PUSHED] update help ids for edit dictionary dialog .ui conversion

2013-08-02 Thread via Code Review
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/5248


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

Gerrit-MessageType: merged
Gerrit-Change-Id: Icb6e8a5870b89776583d582d69d296f441ada3bf
Gerrit-PatchSet: 2
Gerrit-Project: help
Gerrit-Branch: master
Gerrit-Owner: Tamás Csikós csks.t...@gmail.com
Gerrit-Reviewer: Caolán McNamara caol...@redhat.com

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


[PUSHED] update help ids for page number dialog .ui conversion

2013-08-01 Thread via Code Review
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/5212

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


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

Gerrit-MessageType: merged
Gerrit-Change-Id: Id74ac417c50d32c0edb3e78330450fabc2b510ea
Gerrit-PatchSet: 3
Gerrit-Project: help
Gerrit-Branch: master
Gerrit-Owner: Tamás Csikós csks.t...@gmail.com
Gerrit-Reviewer: Caolán McNamara caol...@redhat.com
Gerrit-Reviewer: Tamás Csikós csks.t...@gmail.com

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


[PUSHED] update help ids for footnotes endnotes tab page .ui conversi...

2013-08-01 Thread via Code Review
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/5222

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


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

Gerrit-MessageType: merged
Gerrit-Change-Id: Ia4a156a966172f388d0f7cc08521ef5a53ebde14
Gerrit-PatchSet: 2
Gerrit-Project: help
Gerrit-Branch: master
Gerrit-Owner: Tamás Csikós csks.t...@gmail.com
Gerrit-Reviewer: Caolán McNamara caol...@redhat.com

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


[PATCH] update help ids for page number dialog .ui conversion

2013-07-31 Thread via Code Review
Hi,

I would like you to review the following patch:

https://gerrit.libreoffice.org/5212

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/help refs/changes/12/5212/1

update help ids for page number dialog .ui conversion

Change-Id: Id74ac417c50d32c0edb3e78330450fabc2b510ea
---
M helpers/help_hid.lst
M source/text/shared/explorer/database/rep_pagenumbers.xhp
2 files changed, 5 insertions(+), 11 deletions(-)



diff --git a/helpers/help_hid.lst b/helpers/help_hid.lst
index 0ffa5cf..c154513 100644
--- a/helpers/help_hid.lst
+++ b/helpers/help_hid.lst
@@ -6254,7 +6254,6 @@
 framework_PushButton_DLG_LICENSE_PB_PAGEDOWN,1077940754,
 reportdesign_CheckBox_RID_DATETIME_DLG_CB_DATE,1577878529,
 reportdesign_CheckBox_RID_DATETIME_DLG_CB_TIME,1577878533,
-reportdesign_CheckBox_RID_PAGENUMBERS_CB_SHOWNUMBERONFIRSTPAGE,1577862153,
 reportdesign_ListBox_RID_DATETIME_DLG_LB_DATE_TYPE,1577881091,
 reportdesign_ListBox_RID_DATETIME_DLG_LB_TIME_TYPE,1577881095,
 reportdesign_ListBox_RID_GROUPS_SORTING_LST_FOOTERLST,2114719236,
@@ -6262,12 +6261,7 @@
 reportdesign_ListBox_RID_GROUPS_SORTING_LST_HEADERLST,2114719234,
 reportdesign_ListBox_RID_GROUPS_SORTING_LST_KEEPTOGETHERLST,2114719242,
 reportdesign_ListBox_RID_GROUPS_SORTING_LST_ORDER,2114719249,
-reportdesign_ListBox_RID_PAGENUMBERS_LST_ALIGNMENT,1577864712,
 reportdesign_NumericField_RID_GROUPS_SORTING_ED_GROUPINTERVALLST,2114721800,
-reportdesign_RadioButton_RID_PAGENUMBERS_RB_PAGE_BOTTOMPAGE,1577861638,
-reportdesign_RadioButton_RID_PAGENUMBERS_RB_PAGE_N,1577861634,
-reportdesign_RadioButton_RID_PAGENUMBERS_RB_PAGE_N_OF_M,1577861635,
-reportdesign_RadioButton_RID_PAGENUMBERS_RB_PAGE_TOPPAGE,1577861637,
 sc_CheckBox_RID_SCDLG_AUTOFORMAT_BTN_ADJUST,1493533722,
 sc_CheckBox_RID_SCDLG_AUTOFORMAT_BTN_ALIGNMENT,1493533721,
 sc_CheckBox_RID_SCDLG_AUTOFORMAT_BTN_BORDER,1493533717,
diff --git a/source/text/shared/explorer/database/rep_pagenumbers.xhp 
b/source/text/shared/explorer/database/rep_pagenumbers.xhp
index ac11530..03f19a6 100644
--- a/source/text/shared/explorer/database/rep_pagenumbers.xhp
+++ b/source/text/shared/explorer/database/rep_pagenumbers.xhp
@@ -33,11 +33,11 @@
 /variable/paragraph
 paragraph role=paragraph id=par_id3424481 xml-lang=en-US 
l10n=NEWahelp hid=.You can open the Page Numbers dialog of the link 
href=text/shared/explorer/database/rep_main.xhpReport Builder/link by 
choosing item type=menuitemInsert - Page Numbers/item./ahelp/paragraph
 paragraph role=tip id=par_id1068758 xml-lang=en-US l10n=NEWPress 
item type=keycodeShift-F1/item and point with the mouse at an input box 
to see a help text for this input box./paragraph
-bookmark xml-lang=en-US 
branch=hid/REPORTDESIGN_RADIOBUTTON_RID_PAGENUMBERS_RB_PAGE_N 
id=bm_id7565843 localize=false/paragraph role=paragraph 
id=par_id1559190 xml-lang=en-US l10n=NEWahelp hid=. 
visibility=hiddenPage N/ahelp/paragraph
-bookmark xml-lang=en-US 
branch=hid/REPORTDESIGN_RADIOBUTTON_RID_PAGENUMBERS_RB_PAGE_N_OF_M 
id=bm_id6649372 localize=false/paragraph role=paragraph 
id=par_id9879146 xml-lang=en-US l10n=NEWahelp hid=. 
visibility=hiddenPage N of M/ahelp/paragraph
-bookmark xml-lang=en-US 
branch=hid/REPORTDESIGN_RADIOBUTTON_RID_PAGENUMBERS_RB_PAGE_TOPPAGE 
id=bm_id7334208 localize=false/paragraph role=paragraph 
id=par_id9404278 xml-lang=en-US l10n=NEWahelp hid=. 
visibility=hiddenTop of Page (Header)/ahelp/paragraph
-bookmark xml-lang=en-US 
branch=hid/REPORTDESIGN_RADIOBUTTON_RID_PAGENUMBERS_RB_PAGE_BOTTOMPAGE 
id=bm_id8313852 localize=false/paragraph role=paragraph 
id=par_id7626880 xml-lang=en-US l10n=NEWahelp hid=. 
visibility=hiddenBottom of Page (Footer)/ahelp/paragraph
-bookmark xml-lang=en-US 
branch=hid/REPORTDESIGN_LISTBOX_RID_PAGENUMBERS_LST_ALIGNMENT 
id=bm_id8829309 localize=false/paragraph role=paragraph 
id=par_id6124149 xml-lang=en-US l10n=NEWahelp hid=. 
visibility=hiddenAlignment/ahelp/paragraphcommentShow Number On First 
Page - not in UI/commentparagraph role=paragraph id=par_id9651478 
xml-lang=en-US l10n=NEWahelp hid=. visibility=hiddenShow Number on 
First Page/ahelp/paragraph
+bookmark xml-lang=en-US 
branch=hid/reportdesign/uiconfig/dbreport/ui/pagenumberdialog/pagen 
id=bm_id7565843 localize=false/paragraph role=paragraph 
id=par_id1559190 xml-lang=en-US l10n=NEWahelp hid=. 
visibility=hiddenPage N/ahelp/paragraph
+bookmark xml-lang=en-US 
branch=hid/reportdesign/uiconfig/dbreport/ui/pagenumberdialog/pagenofm 
id=bm_id6649372 localize=false/paragraph role=paragraph 
id=par_id9879146 xml-lang=en-US l10n=NEWahelp hid=. 
visibility=hiddenPage N of M/ahelp/paragraph
+bookmark xml-lang=en-US 
branch=hid/reportdesign/uiconfig/dbreport/ui/pagenumberdialog/toppage 
id=bm_id7334208 localize=false/paragraph role=paragraph 
id=par_id9404278 xml-lang=en-US l10n=NEWahelp hid=. 
visibility=hiddenTop of Page (Header)/ahelp/paragraph
+bookmark xml-lang=en-US 
branch=hid/reportdesign/uiconfig/dbreport/ui/pagenumberdialog/bottompage 
id=bm_id8313852 

[PATCH] update help ids for date time dialog .ui conversion

2013-07-31 Thread via Code Review
Hi,

I would like you to review the following patch:

https://gerrit.libreoffice.org/5214

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/help refs/changes/14/5214/1

update help ids for date time dialog .ui conversion

Change-Id: Icbdc3b9cab375db8caf694c65ada055d70f59753
---
M helpers/help_hid.lst
M source/text/shared/explorer/database/rep_datetime.xhp
2 files changed, 2 insertions(+), 6 deletions(-)



diff --git a/helpers/help_hid.lst b/helpers/help_hid.lst
index c154513..4ea244f 100644
--- a/helpers/help_hid.lst
+++ b/helpers/help_hid.lst
@@ -6252,10 +6252,6 @@
 framework_PushButton_DLG_LICENSE_PB_ACCEPT,1077940759,
 framework_PushButton_DLG_LICENSE_PB_DECLINE,1077940758,
 framework_PushButton_DLG_LICENSE_PB_PAGEDOWN,1077940754,
-reportdesign_CheckBox_RID_DATETIME_DLG_CB_DATE,1577878529,
-reportdesign_CheckBox_RID_DATETIME_DLG_CB_TIME,1577878533,
-reportdesign_ListBox_RID_DATETIME_DLG_LB_DATE_TYPE,1577881091,
-reportdesign_ListBox_RID_DATETIME_DLG_LB_TIME_TYPE,1577881095,
 reportdesign_ListBox_RID_GROUPS_SORTING_LST_FOOTERLST,2114719236,
 reportdesign_ListBox_RID_GROUPS_SORTING_LST_GROUPONLST,2114719238,
 reportdesign_ListBox_RID_GROUPS_SORTING_LST_HEADERLST,2114719234,
diff --git a/source/text/shared/explorer/database/rep_datetime.xhp 
b/source/text/shared/explorer/database/rep_datetime.xhp
index 15e0ed0..bdf4821 100644
--- a/source/text/shared/explorer/database/rep_datetime.xhp
+++ b/source/text/shared/explorer/database/rep_datetime.xhp
@@ -33,11 +33,11 @@
 /variable/paragraph
 paragraph role=paragraph id=par_id8638874 xml-lang=en-US 
l10n=NEWahelp hid=.You can open the Date and Time dialog of the link 
href=text/shared/explorer/database/rep_main.xhpReport Builder/link by 
choosing item type=menuitemInsert - Date and 
Time/item./ahelp/paragraph
 paragraph role=tip id=par_id6278878 xml-lang=en-US l10n=NEWPress 
item type=keycodeShift-F1/item and point with the mouse at an input box 
to see a help text for this input box./paragraph
-bookmark xml-lang=en-US 
branch=hid/REPORTDESIGN_CHECKBOX_RID_DATETIME_DLG_CB_DATE id=bm_id5607470 
localize=false/paragraph role=paragraph id=par_id393078 
xml-lang=en-US l10n=NEWahelp hid=.Enable Include Date to insert a date 
field into the active area of the report. The date field displays the current 
date when the report is executed./ahelp/paragraph
+bookmark xml-lang=en-US branch=hid/modules/dbreport/ui/date 
id=bm_id5607470 localize=false/paragraph role=paragraph 
id=par_id393078 xml-lang=en-US l10n=NEWahelp hid=.Enable Include 
Date to insert a date field into the active area of the report. The date field 
displays the current date when the report is executed./ahelp/paragraph
 !-- removed HID 1577878018 --
 !-- removed HID 1577878019 --
 !-- removed HID 1577878020 --paragraph role=paragraph id=par_id1271401 
xml-lang=en-US l10n=NEWahelp hid=. visibility=hiddenSelect a format 
to display the date./ahelp/paragraph
-bookmark xml-lang=en-US 
branch=hid/REPORTDESIGN_CHECKBOX_RID_DATETIME_DLG_CB_TIME id=bm_id6481215 
localize=false/paragraph role=paragraph id=par_id8718832 
xml-lang=en-US l10n=NEWahelp hid=.Enable Include Time to insert a time 
field into the active area of the report. The time field displays the current 
time when the report is executed./ahelp/paragraph
+bookmark xml-lang=en-US branch=hid/modules/dbreport/ui/time 
id=bm_id6481215 localize=false/paragraph role=paragraph 
id=par_id8718832 xml-lang=en-US l10n=NEWahelp hid=.Enable Include 
Time to insert a time field into the active area of the report. The time field 
displays the current time when the report is executed./ahelp/paragraph
 !-- removed HID 1577878022 --
 !-- removed HID 1577878023 --
 !-- removed HID 1577878024 --paragraph role=paragraph id=par_id8561052 
xml-lang=en-US l10n=NEWahelp hid=. visibility=hiddenSelect a format 
to display the time./ahelp/paragraph

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Icbdc3b9cab375db8caf694c65ada055d70f59753
Gerrit-PatchSet: 1
Gerrit-Project: help
Gerrit-Branch: master
Gerrit-Owner: Tamás Csikós csks.t...@gmail.com

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


[PATCH] update help ids for footnotes endnotes tab page .ui conversi...

2013-07-31 Thread via Code Review
Hi,

I would like you to review the following patch:

https://gerrit.libreoffice.org/5222

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/help refs/changes/22/5222/1

update help ids for footnotes endnotes tab page .ui conversion

Change-Id: Ia4a156a966172f388d0f7cc08521ef5a53ebde14
---
M helpers/help_hid.lst
M source/text/swriter/01/05040700.xhp
2 files changed, 28 insertions(+), 42 deletions(-)



diff --git a/helpers/help_hid.lst b/helpers/help_hid.lst
index 4ea244f..769184f 100644
--- a/helpers/help_hid.lst
+++ b/helpers/help_hid.lst
@@ -7701,12 +7701,6 @@
 sw_CheckBox_TP_OPTSHDWCRSR_CB_SHYPH,878806025,
 sw_CheckBox_TP_OPTSHDWCRSR_CB_SPACE,878806023,
 sw_CheckBox_TP_OPTSHDWCRSR_CB_TAB,878806022,
-sw_CheckBox_TP_SECTION_FTNENDNOTES_CB_END_AT_TXTEND,879248387,
-sw_CheckBox_TP_SECTION_FTNENDNOTES_CB_END_NUM,879248388,
-sw_CheckBox_TP_SECTION_FTNENDNOTES_CB_END_NUM_FMT,879248396,
-sw_CheckBox_TP_SECTION_FTNENDNOTES_CB_FTN_AT_TXTEND,879248390,
-sw_CheckBox_TP_SECTION_FTNENDNOTES_CB_FTN_NUM,879248391,
-sw_CheckBox_TP_SECTION_FTNENDNOTES_CB_FTN_NUM_FMT,879248395,
 sw_CheckBox_TP_TABLE_COLUMN_CB_MOD_TBL,888489082,
 sw_CheckBox_TP_TABLE_COLUMN_CB_PROP,888489083,
 sw_CheckBox_TP_TABLE_TEXTFLOW_CB_HEADLINE,878511144,
@@ -7812,10 +7806,6 @@
 sw_Edit_TP_PRIVATE_DATA_ED_TITLE,879216684,
 sw_Edit_TP_PRIVATE_DATA_ED_WWW,879216691,
 sw_Edit_TP_PRIVATE_DATA_ED_ZIP,879216678,
-sw_Edit_TP_SECTION_FTNENDNOTES_ED_END_PREFIX,879249422,
-sw_Edit_TP_SECTION_FTNENDNOTES_ED_END_SUFFIX,879249423,
-sw_Edit_TP_SECTION_FTNENDNOTES_ED_FTN_PREFIX,879249425,
-sw_Edit_TP_SECTION_FTNENDNOTES_ED_FTN_SUFFIX,879249426,
 sw_Edit_TP_TOX_SELECT_ED_TITLE,879134735,
 sw_FI_PREVIEW_DLG_MM_GREETINGS_PAGE,898252800,
 sw_FT_BODY_DLG_MM_MAILBODY,1435402240,
@@ -7929,8 +7919,6 @@
 sw_ListBox_TP_OPTCAPTION_PAGE_LB_LEVEL,878939671,
 sw_ListBox_TP_OPTCAPTION_PAGE_LB_ORDER,878939680,
 sw_ListBox_TP_OPTCOMPATIBILITY_PAGE_LB_FORMATTING,879349260,
-sw_ListBox_TP_SECTION_FTNENDNOTES_LB_END_NUMVIEW,879250980,
-sw_ListBox_TP_SECTION_FTNENDNOTES_LB_FTN_NUMVIEW,879250981,
 sw_ListBox_TP_TABLE_TEXTFLOW_LB_PAGECOLL,878513801,
 sw_ListBox_TP_TABLE_TEXTFLOW_LB_TEXTORIENTATION,878513708,
 sw_ListBox_TP_TABLE_TEXTFLOW_LB_VERTORIENT,878513815,
@@ -8037,8 +8025,6 @@
 sw_NumericField_TP_LINENUMBERING_NF_NUM_INVERVAL,878893067,
 sw_NumericField_TP_NUMPARA_NF_NEW_START,878860294,
 sw_NumericField_TP_NUMPARA_NF_RESTART_PARA,878860299,
-sw_NumericField_TP_SECTION_FTNENDNOTES_FLD_END_OFFSET,879253527,
-sw_NumericField_TP_SECTION_FTNENDNOTES_FLD_FTN_OFFSET,879253528,
 sw_NumericField_TP_TABLE_TEXTFLOW_NF_PAGENUM,878516363,
 sw_NumericField_TP_TABLE_TEXTFLOW_NF_REPEAT_HEADER,878516264,
 sw_NumericField_TP_TOX_ENTRY_NF_LEVEL_OL,879155353,
diff --git a/source/text/swriter/01/05040700.xhp 
b/source/text/swriter/01/05040700.xhp
index 6ebf929..8ded371 100644
--- a/source/text/swriter/01/05040700.xhp
+++ b/source/text/swriter/01/05040700.xhp
@@ -41,35 +41,35 @@
 /section
   paragraph xml-lang=en-US role=note id=par_id3149800 l10n=U 
oldref=3This tab is not available in link 
href=text/swriter/01/0313.xhp name=Print LayoutPrint Layout/link 
view./paragraph
   paragraph role=heading level=2 id=hd_id3153538 l10n=U 
xml-lang=en-US oldref=4Footnotes/paragraph
-  bookmark branch=hid/sw:CheckBox:TP_SECTION_FTNENDNOTES:CB_FTN_AT_TXTEND 
xml-lang=en-US id=bm_id3154572 localize=false/paragraph role=heading 
level=3 id=hd_id3154480 l10n=U xml-lang=en-US oldref=5Collect at end 
of text/paragraph
-  paragraph l10n=U role=paragraph id=par_id3151309 xml-lang=en-US 
oldref=11ahelp hid=SW:CHECKBOX:TP_SECTION_FTNENDNOTES:CB_FTN_AT_TXTEND 
visibility=visibleAdds footnotes at the end of the section. If the section 
spans more than one page, the footnotes are added to the bottom of the page on 
which the footnote anchors appear./ahelp/paragraph
-  bookmark branch=hid/sw:CheckBox:TP_SECTION_FTNENDNOTES:CB_FTN_NUM 
xml-lang=en-US id=bm_id3153671 localize=false/paragraph role=heading 
level=3 id=hd_id3152960 l10n=U xml-lang=en-US oldref=6Restart 
numbering/paragraph
-  paragraph l10n=U role=paragraph id=par_id3153677 xml-lang=en-US 
oldref=12ahelp hid=SW:CHECKBOX:TP_SECTION_FTNENDNOTES:CB_FTN_NUM 
visibility=visibleRestarts the footnote numbering at the number that you 
specify./ahelp/paragraph
-  bookmark branch=hid/sw:NumericField:TP_SECTION_FTNENDNOTES:FLD_FTN_OFFSET 
xml-lang=en-US id=bm_id3154190 localize=false/paragraph role=heading 
level=3 id=hd_id3149688 l10n=U xml-lang=en-US oldref=13Start 
at/paragraph
-  paragraph l10n=U role=paragraph id=par_id3154196 xml-lang=en-US 
oldref=14ahelp hid=SW:NUMERICFIELD:TP_SECTION_FTNENDNOTES:FLD_FTN_OFFSET 
visibility=visibleEnter the number that you want to assign the 
footnote./ahelp/paragraph
-  bookmark branch=hid/sw:CheckBox:TP_SECTION_FTNENDNOTES:CB_FTN_NUM_FMT 
xml-lang=en-US id=bm_id3143277 localize=false/paragraph role=heading 
level=3 id=hd_id3155185 l10n=U xml-lang=en-US oldref=15Custom 
format/paragraph
-  paragraph 

[PATCH] Add license to NSAXSpy - Simplified BSD License

2013-07-30 Thread via Code Review
Hi,

I would like you to review the following patch:

https://gerrit.libreoffice.org/5204

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/dev-tools refs/changes/04/5204/1

Add license to NSAXSpy - Simplified BSD License

Change-Id: Ie0d9bb13a29001f255d4a8529e22375842a3470a
---
M NSAXSpy/NSAXSpy/main.m
1 file changed, 21 insertions(+), 0 deletions(-)



diff --git a/NSAXSpy/NSAXSpy/main.m b/NSAXSpy/NSAXSpy/main.m
index d504d65..e96ed40 100644
--- a/NSAXSpy/NSAXSpy/main.m
+++ b/NSAXSpy/NSAXSpy/main.m
@@ -5,6 +5,27 @@
 //  Created by Boris Dušek on 14.10.12.
 //  Copyright (c) 2012 Boris Dušek. All rights reserved.
 //
+//  Redistribution and use in source and binary forms, with or without
+//  modification, are permitted provided that the following conditions are met:
+//
+//  1. Redistributions of source code must retain the above copyright notice, 
this
+//  list of conditions and the following disclaimer.
+//  2. Redistributions in binary form must reproduce the above copyright 
notice,
+//  this list of conditions and the following disclaimer in the documentation
+//  and/or other materials provided with the distribution.
+//
+//  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS AS 
IS AND
+//  ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
IMPLIED
+//  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+//  DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 
LIABLE FOR
+//  ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 
DAMAGES
+//  (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 
SERVICES;
+//   LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 
AND
+//  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+//  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 
THIS
+//  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+//
+//
 //This tool currently logs the AXAttributedString of the first AXTextArea
 //found in LibreOffice (suited for Writer), and logs all AXValueChanged
 //and AXSelectedTextChanged notifications of that AXTextArea and also all

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ie0d9bb13a29001f255d4a8529e22375842a3470a
Gerrit-PatchSet: 1
Gerrit-Project: dev-tools
Gerrit-Branch: master
Gerrit-Owner: Boris Dušek m...@dusek.me

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


[PUSHED] Add license to NSAXSpy - Simplified BSD License

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

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/5204

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


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

Gerrit-MessageType: merged
Gerrit-Change-Id: Ie0d9bb13a29001f255d4a8529e22375842a3470a
Gerrit-PatchSet: 2
Gerrit-Project: dev-tools
Gerrit-Branch: master
Gerrit-Owner: Boris Dušek m...@dusek.me
Gerrit-Reviewer: Norbert Thiebaud nthieb...@gmail.com

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


[PATCH] update help ids for direct sql dialog .ui conversion

2013-07-30 Thread via Code Review
Hi,

I would like you to review the following patch:

https://gerrit.libreoffice.org/5205

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/help refs/changes/05/5205/1

update help ids for direct sql dialog .ui conversion

Change-Id: I04405deaa3af2deb89d41ea032dc95b0fb5f919f
---
M helpers/help_hid.lst
M source/text/shared/explorer/database/1108.xhp
2 files changed, 8 insertions(+), 14 deletions(-)



diff --git a/helpers/help_hid.lst b/helpers/help_hid.lst
index 60fe492..0ffa5cf 100644
--- a/helpers/help_hid.lst
+++ b/helpers/help_hid.lst
@@ -5970,7 +5970,6 @@
 dbaccess_ListBox_DLG_DATASOURCE_SELECTION_LB_DATASOURCE,1388383745,
 dbaccess_ListBox_DLG_DBASE_INDEXES_LB_FREEINDEXES,1388334594,
 dbaccess_ListBox_DLG_DBASE_INDEXES_LB_TABLEINDEXES,1388334593,
-dbaccess_ListBox_DLG_DIRECTSQL_LB_HISTORY,1388678662,
 dbaccess_ListBox_DLG_FILTERCRIT_LB_WHERECOMP1,1388416514,
 dbaccess_ListBox_DLG_FILTERCRIT_LB_WHERECOMP2,1388416516,
 dbaccess_ListBox_DLG_FILTERCRIT_LB_WHERECOMP3,1388416518,
@@ -5992,7 +5991,6 @@
 dbaccess_ModalDialog_DLG_ADABASSTAT,1388609536,
 dbaccess_ModalDialog_DLG_DATASOURCE_SELECTION,1388380160,
 dbaccess_ModalDialog_DLG_DBASE_INDEXES,1388331008,
-dbaccess_ModalDialog_DLG_DIRECTSQL,1388675072,
 dbaccess_ModalDialog_DLG_DOMAINPASSWORD,1388707840,
 dbaccess_ModalDialog_DLG_INDEXDESIGN,1388625920,
 dbaccess_ModalDialog_DLG_MACRO_MIGRATION,1388314624,
@@ -6001,8 +5999,6 @@
 dbaccess_ModalDialog_DLG_SQLEXCEPTIONCHAIN,1388363776,
 dbaccess_ModalDialog_DLG_TEXT_CONNECTION_SETTINGS,1388822528,
 dbaccess_ModalDialog_WIZ_RTFCOPYTABLE,1388576768,
-dbaccess_MultiLineEdit_DLG_DIRECTSQL_ME_SQL,1388677635,
-dbaccess_MultiLineEdit_DLG_DIRECTSQL_ME_STATUS,1388677640,
 dbaccess_MultiLineEdit_TP_SUMMARY_ED_CHANGES,851495426,
 dbaccess_MultiListBox_TAB_WIZ_COLUMN_SELECT_LB_NEW_COLUMN_NAMES,851594242,
 dbaccess_MultiListBox_TAB_WIZ_COLUMN_SELECT_LB_ORG_COLUMN_NAMES,851594241,
@@ -6015,8 +6011,6 @@
 dbaccess_PushButton_DLG_COLLECTION_VIEW_BTN_EXPLORERFILE_SAVE,1388761603,
 dbaccess_PushButton_DLG_DATASOURCE_SELECTION_PB_CREATE,1388384777,
 dbaccess_PushButton_DLG_DATASOURCE_SELECTION_PB_MANAGE,1388384773,
-dbaccess_PushButton_DLG_DIRECTSQL_PB_CLOSE,1388679691,
-dbaccess_PushButton_DLG_DIRECTSQL_PB_EXECUTE,1388679684,
 dbaccess_PushButton_DLG_INDEXDESIGN_PB_CLOSE,1388630529,
 dbaccess_PushButton_DLG_JOIN_TABADD_PB_ADDTABLE,2462290433,
 dbaccess_PushButton_DLG_PARAMETERS_BT_TRAVELNEXT,1388401158,
diff --git a/source/text/shared/explorer/database/1108.xhp 
b/source/text/shared/explorer/database/1108.xhp
index d84778c..63c9912 100644
--- a/source/text/shared/explorer/database/1108.xhp
+++ b/source/text/shared/explorer/database/1108.xhp
@@ -41,17 +41,17 @@
 embed href=text/shared/guide/data_enter_sql.xhp#data_enter_sql/
 paragraph role=paragraph id=par_id3147275 xml-lang=en-US l10n=U 
oldref=23You can only enter administration commands in this dialog, such as 
Grant, Create Table, or Drop Table, and not filter commands. The commands that 
you can enter depend on the data source, for example, dBASE can only run some 
of the SQL commands list here./paragraph
 paragraph role=note id=par_id3154860 xml-lang=en-US l10n=U 
oldref=10To run an SQL query for filtering data in the database, use the 
link href=text/shared/explorer/database/02010100.xhp name=Query 
DesignQuery Design View/link./paragraph
-bookmark xml-lang=en-US 
branch=hid/dbaccess:MultiLineEdit:DLG_DIRECTSQL:ME_SQL id=bm_id3150772 
localize=false/paragraph role=heading id=hd_id3149514 xml-lang=en-US 
level=2 l10n=U oldref=3Command to execute/paragraph
-paragraph role=paragraph id=par_id3147618 xml-lang=en-US l10n=U 
oldref=4ahelp hid=DBACCESS_MULTILINEEDIT_DLG_DIRECTSQL_ME_SQLEnter the 
SQL administration command that you want to run./ahelp/paragraph
+bookmark xml-lang=en-US branch=hid/dbaccess/ui/directsqldialog/sql 
id=bm_id3150772 localize=false/paragraph role=heading id=hd_id3149514 
xml-lang=en-US level=2 l10n=U oldref=3Command to execute/paragraph
+paragraph role=paragraph id=par_id3147618 xml-lang=en-US l10n=U 
oldref=4ahelp hid=dbaccess/ui/directsqldialog/sqlEnter the SQL 
administration command that you want to run./ahelp/paragraph
 paragraph role=paragraph id=par_id3153087 xml-lang=en-US l10n=U 
oldref=24For example, for a Bibliography data source, you can enter the 
following SQL command:/paragraph
 paragraph role=paragraph id=par_id3145673 xml-lang=en-US l10n=U 
oldref=25SELECT Address FROM biblio biblio/paragraph
 paragraph role=paragraph id=par_id3145611 xml-lang=en-US l10n=U 
oldref=21For more information on SQL commands, please consult the 
documentation that came with the database./paragraph
-bookmark xml-lang=en-US 
branch=hid/dbaccess:ListBox:DLG_DIRECTSQL:LB_HISTORY id=bm_id3154923 
localize=false/paragraph role=heading id=hd_id3156024 xml-lang=en-US 
level=2 l10n=U oldref=26Previous commands/paragraph
-paragraph role=paragraph id=par_id3149045 xml-lang=en-US l10n=U 
oldref=27ahelp 

[PUSHED] update help ids for direct sql dialog .ui conversion

2013-07-30 Thread via Code Review
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/5205

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


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I04405deaa3af2deb89d41ea032dc95b0fb5f919f
Gerrit-PatchSet: 2
Gerrit-Project: help
Gerrit-Branch: master
Gerrit-Owner: Tamás Csikós csks.t...@gmail.com
Gerrit-Reviewer: Caolán McNamara caol...@redhat.com

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


[PATCH] Converting to OUString in sd in sdundo.hxx and related files...

2013-07-28 Thread Norbert Thiebaud (via Code Review)
Hello LibreOffice gerrit bot,

I'd like you to reexamine a rebased change.  Please visit

https://gerrit.libreoffice.org/5135

to look at the new rebased patch set (#2).

Change subject: Converting to OUString in sd in sdundo.hxx and related files.
..

Converting to OUString in sd in sdundo.hxx and related files.

Change-Id: I5e9c1122ccfe9dfadfb36c4ab419c429c2bda6d0
---
M sd/inc/sdundo.hxx
M sd/source/ui/animations/SlideTransitionPane.cxx
M sd/source/ui/dlg/headerfooterdlg.cxx
M sd/source/ui/func/fuoaprms.cxx
M sd/source/ui/func/fupage.cxx
M sd/source/ui/func/undoback.cxx
M sd/source/ui/func/undolayer.cxx
M sd/source/ui/view/ViewShellImplementation.cxx
M sd/source/ui/view/drviews3.cxx
M sd/source/ui/view/sdview2.cxx
M sd/source/ui/view/viewshe2.cxx
11 files changed, 15 insertions(+), 15 deletions(-)


  git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/35/5135/2
-- 
To view, visit https://gerrit.libreoffice.org/5135
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newpatchset
Gerrit-Change-Id: I5e9c1122ccfe9dfadfb36c4ab419c429c2bda6d0
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Gergely Máté sportem...@caesar.elte.hu
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org
Gerrit-Reviewer: Norbert Thiebaud nthieb...@gmail.com

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


[PATCH] Add NSAXSpy to help debugging OS X accessibility

2013-07-28 Thread via Code Review
Hi,

I would like you to review the following patch:

https://gerrit.libreoffice.org/5160

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/dev-tools refs/changes/60/5160/1

Add NSAXSpy to help debugging OS X accessibility

This tool currently logs the AXAttributedString of the first AXTextArea
found in LibreOffice (suited for Writer), and logs all AXValueChanged
and AXSelectedTextChanged notifications of that AXTextArea and also all
AXFocusedUIElementChange notifications. It can be adjusted to do
the same thing for TextEdit so that one can learn from it
 how stuff should be implemented (TextEdit is basically
*the* reference implementation of AXTextArea).

Any adjustments (e.g. to observe TextEdit instead of LibreOffice)
need to be done in the source code of this tool.

Change-Id: Ia7f4dbed4924b8f5330726d378eda3601991f404
---
M .gitignore
A NSAXSpy/NSAXSpy.xcodeproj/project.pbxproj
A NSAXSpy/NSAXSpy.xcodeproj/project.xcworkspace/contents.xcworkspacedata
A NSAXSpy/NSAXSpy/main.m
4 files changed, 455 insertions(+), 1 deletion(-)



diff --git a/.gitignore b/.gitignore
index 9745f02..765cd01 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,4 @@
 *~
-*.orig
\ No newline at end of file
+*.orig
+NSAXSpy/NSAXSpy.xcodeproj/project.xcworkspace/xcuserdata/
+NSAXSpy/NSAXSpy.xcodeproj/xcuserdata/
diff --git a/NSAXSpy/NSAXSpy.xcodeproj/project.pbxproj 
b/NSAXSpy/NSAXSpy.xcodeproj/project.pbxproj
new file mode 100644
index 000..392335a
--- /dev/null
+++ b/NSAXSpy/NSAXSpy.xcodeproj/project.pbxproj
@@ -0,0 +1,240 @@
+// !$*UTF8*$!
+{
+   archiveVersion = 1;
+   classes = {
+   };
+   objectVersion = 46;
+   objects = {
+
+/* Begin PBXBuildFile section */
+   6B6A880F17A5B49B00182C47 /* CoreFoundation.framework in 
Frameworks */ = {isa = PBXBuildFile; fileRef = 6B6A880E17A5B49B00182C47 /* 
CoreFoundation.framework */; };
+   6B6A881217A5B49B00182C47 /* main.m in Sources */ = {isa = 
PBXBuildFile; fileRef = 6B6A881117A5B49B00182C47 /* main.m */; };
+   6B6A881B17A5B4ED00182C47 /* ApplicationServices.framework in 
Frameworks */ = {isa = PBXBuildFile; fileRef = 6B6A881A17A5B4ED00182C47 /* 
ApplicationServices.framework */; };
+   6B6A881D17A5B4F600182C47 /* Cocoa.framework in Frameworks */ = 
{isa = PBXBuildFile; fileRef = 6B6A881C17A5B4F600182C47 /* Cocoa.framework */; 
};
+/* End PBXBuildFile section */
+
+/* Begin PBXCopyFilesBuildPhase section */
+   6B6A880917A5B49B00182C47 /* CopyFiles */ = {
+   isa = PBXCopyFilesBuildPhase;
+   buildActionMask = 2147483647;
+   dstPath = /usr/share/man/man1/;
+   dstSubfolderSpec = 0;
+   files = (
+   );
+   runOnlyForDeploymentPostprocessing = 1;
+   };
+/* End PBXCopyFilesBuildPhase section */
+
+/* Begin PBXFileReference section */
+   6B6A880B17A5B49B00182C47 /* NSAXSpy */ = {isa = 
PBXFileReference; explicitFileType = compiled.mach-o.executable; 
includeInIndex = 0; path = NSAXSpy; sourceTree = BUILT_PRODUCTS_DIR; };
+   6B6A880E17A5B49B00182C47 /* CoreFoundation.framework */ = {isa 
= PBXFileReference; lastKnownFileType = wrapper.framework; name = 
CoreFoundation.framework; path = 
System/Library/Frameworks/CoreFoundation.framework; sourceTree = SDKROOT; };
+   6B6A881117A5B49B00182C47 /* main.m */ = {isa = 
PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; 
sourceTree = group; };
+   6B6A881A17A5B4ED00182C47 /* ApplicationServices.framework */ = 
{isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = 
ApplicationServices.framework; path = 
System/Library/Frameworks/ApplicationServices.framework; sourceTree = SDKROOT; 
};
+   6B6A881C17A5B4F600182C47 /* Cocoa.framework */ = {isa = 
PBXFileReference; lastKnownFileType = wrapper.framework; name = 
Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = 
SDKROOT; };
+/* End PBXFileReference section */
+
+/* Begin PBXFrameworksBuildPhase section */
+   6B6A880817A5B49B00182C47 /* Frameworks */ = {
+   isa = PBXFrameworksBuildPhase;
+   buildActionMask = 2147483647;
+   files = (
+   6B6A881D17A5B4F600182C47 /* Cocoa.framework in 
Frameworks */,
+   6B6A881B17A5B4ED00182C47 /* 
ApplicationServices.framework in Frameworks */,
+   6B6A880F17A5B49B00182C47 /* 
CoreFoundation.framework in Frameworks */,
+   );
+   runOnlyForDeploymentPostprocessing = 0;
+   };
+/* End PBXFrameworksBuildPhase section */
+
+/* Begin PBXGroup section */
+   6B6A880217A5B49B00182C47 = {
+   isa = PBXGroup;
+   children 

[PUSHED] Add NSAXSpy to help debugging OS X accessibility

2013-07-28 Thread via Code Review
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/5160

Approvals:
  Boris Dušek: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: Ia7f4dbed4924b8f5330726d378eda3601991f404
Gerrit-PatchSet: 2
Gerrit-Project: dev-tools
Gerrit-Branch: master
Gerrit-Owner: Boris Dušek m...@dusek.me
Gerrit-Reviewer: Boris Dušek m...@dusek.me

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


[PUSHED] Converting to OUString in sd in sdundo.hxx and related files...

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

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/5135

Approvals:
  LibreOffice gerrit bot: Verified
  Norbert Thiebaud: Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I5e9c1122ccfe9dfadfb36c4ab419c429c2bda6d0
Gerrit-PatchSet: 3
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Gergely Máté sportem...@caesar.elte.hu
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org
Gerrit-Reviewer: Norbert Thiebaud nthieb...@gmail.com

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


[ABANDONED] solve fdo#54819

2013-07-26 Thread via Code Review
Luboš Luňák has abandoned this change.

Change subject: solve fdo#54819
..


Patch Set 2: Abandoned

I'm abandoning this change based on the comments, so that it doesn't linger 
around. When you have the time to submit an updated version, please a new one.

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

Gerrit-MessageType: abandon
Gerrit-Change-Id: I989d3f9e56503ddc6280d134ed433b8af94ed052
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Maxime de Roucy mdero...@linagora.com
Gerrit-Reviewer: Caolán McNamara caol...@redhat.com
Gerrit-Reviewer: Fridrich Strba fridr...@documentfoundation.org
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org
Gerrit-Reviewer: Maxime de Roucy mdero...@linagora.com
Gerrit-Reviewer: Michael Stahl mst...@redhat.com

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


[PUSHED] Avoid confusing wording in mails requesting a review

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

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/4828

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


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I37cc7801716b43693a2f14d28fc5c410b01d95d9
Gerrit-PatchSet: 2
Gerrit-Project: gerrit-etc
Gerrit-Branch: master
Gerrit-Owner: Stephan Bergmann sberg...@redhat.com
Gerrit-Reviewer: Eike Rathke er...@redhat.com
Gerrit-Reviewer: Norbert Thiebaud nthieb...@gmail.com

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


[PATCH] fdo#67093 Change traduction of Header in it to avoid conflic...

2013-07-25 Thread Arnaud Versini (via Code Review)
Hi,

I would like you to review the following patch:

https://gerrit.libreoffice.org/5092

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/translations 
refs/changes/92/5092/1

fdo#67093 Change traduction of Header in it to avoid conflict with Heading

Change-Id: Ib2c7d4c7df2f492a6a10081c9ed4e99ac9e61e73
---
M source/it/sw/source/ui/utlui.po
1 file changed, 1 insertion(+), 1 deletion(-)



diff --git a/source/it/sw/source/ui/utlui.po b/source/it/sw/source/ui/utlui.po
index 2553927..759ad55 100644
--- a/source/it/sw/source/ui/utlui.po
+++ b/source/it/sw/source/ui/utlui.po
@@ -126,7 +126,7 @@
 STR_HEADER\n
 string.text
 msgid Header
-msgstr Intestazione
+msgstr Riga d'intestazione
 
 #: attrdesc.src
 msgctxt 

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ib2c7d4c7df2f492a6a10081c9ed4e99ac9e61e73
Gerrit-PatchSet: 1
Gerrit-Project: translations
Gerrit-Branch: master
Gerrit-Owner: Arnaud Versini arnaud.vers...@gmail.com

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


[PATCH libreoffice-4-1] fdo#67093 Change traduction of Header in it to avoid conflic...

2013-07-25 Thread Arnaud Versini (via Code Review)
Hi,

I would like you to review the following patch:

https://gerrit.libreoffice.org/5093

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/translations 
refs/changes/93/5093/1

fdo#67093 Change traduction of Header in it to avoid conflict with Heading

Change-Id: Ib2c7d4c7df2f492a6a10081c9ed4e99ac9e61e73
---
M source/it/sw/source/ui/utlui.po
1 file changed, 1 insertion(+), 1 deletion(-)



diff --git a/source/it/sw/source/ui/utlui.po b/source/it/sw/source/ui/utlui.po
index d2c3a4c..822c92cc 100644
--- a/source/it/sw/source/ui/utlui.po
+++ b/source/it/sw/source/ui/utlui.po
@@ -126,7 +126,7 @@
 STR_HEADER\n
 string.text
 msgid Header
-msgstr Intestazione
+msgstr Riga d'intestazione
 
 #: attrdesc.src
 msgctxt 

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ib2c7d4c7df2f492a6a10081c9ed4e99ac9e61e73
Gerrit-PatchSet: 1
Gerrit-Project: translations
Gerrit-Branch: libreoffice-4-1
Gerrit-Owner: Arnaud Versini arnaud.vers...@gmail.com

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


[PUSHED libreoffice-4-1] fdo#67093 Change traduction of Header in it to avoid conflic...

2013-07-25 Thread Fridrich Strba (via Code Review)
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/5093

Approvals:
  Fridrich Strba: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: Ib2c7d4c7df2f492a6a10081c9ed4e99ac9e61e73
Gerrit-PatchSet: 2
Gerrit-Project: translations
Gerrit-Branch: libreoffice-4-1
Gerrit-Owner: Arnaud Versini arnaud.vers...@gmail.com
Gerrit-Reviewer: Fridrich Strba fridr...@documentfoundation.org

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


[PUSHED] fdo#67093 Change traduction of Header in it to avoid conflic...

2013-07-25 Thread Fridrich Strba (via Code Review)
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/5092

Approvals:
  Fridrich Strba: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: Ib2c7d4c7df2f492a6a10081c9ed4e99ac9e61e73
Gerrit-PatchSet: 2
Gerrit-Project: translations
Gerrit-Branch: master
Gerrit-Owner: Arnaud Versini arnaud.vers...@gmail.com
Gerrit-Reviewer: Fridrich Strba fridr...@documentfoundation.org

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


[ABANDONED] update ids for move tab dialog .ui conversion

2013-07-25 Thread via Code Review
Caolán McNamara has abandoned this change.

Change subject: update ids for move tab dialog .ui conversion
..


Patch Set 1: Abandoned

conversion collision

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

Gerrit-MessageType: abandon
Gerrit-Change-Id: Ie0efc7dad30b37ce996b9de0e162e3ddbe024b06
Gerrit-PatchSet: 1
Gerrit-Project: help
Gerrit-Branch: master
Gerrit-Owner: Tamás Csikós csks.t...@gmail.com
Gerrit-Reviewer: Caolán McNamara caol...@redhat.com

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


[PUSHED] Change String class to OUString class in css1atr.cxx

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

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/5053

Approvals:
  LibreOffice gerrit bot: Verified
  Norbert Thiebaud: Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: Ibc216e28196bfdeec027b5d5eba4df5009e4e5a4
Gerrit-PatchSet: 5
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Mihály Palenik palenik.mih...@gmail.com
Gerrit-Reviewer: LibreOffice gerrit bot ger...@libreoffice.org
Gerrit-Reviewer: Luboš Luňák l.lu...@suse.cz
Gerrit-Reviewer: Mihály Palenik palenik.mih...@gmail.com
Gerrit-Reviewer: Norbert Thiebaud nthieb...@gmail.com

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


[PATCH] update ids for name ranges dialog .ui conversion

2013-07-24 Thread via Code Review
Hi,

I would like you to review the following patch:

https://gerrit.libreoffice.org/5067

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/help refs/changes/67/5067/1

update ids for name ranges dialog .ui conversion

Change-Id: I362bdeb127628ee851e3859af143b290988cce1f
---
M helpers/help_hid.lst
M source/text/scalc/01/04070400.xhp
M source/text/shared/00/0001.xhp
3 files changed, 14 insertions(+), 23 deletions(-)



diff --git a/helpers/help_hid.lst b/helpers/help_hid.lst
index e129ca0..60fe492 100644
--- a/helpers/help_hid.lst
+++ b/helpers/help_hid.lst
@@ -6348,8 +6348,6 @@
 sc_DateField_RID_SCDLG_DPDATEGROUP_ED_END,1495440898,
 sc_DateField_RID_SCDLG_DPDATEGROUP_ED_START,1495440897,
 sc_Edit_RID_SCDLG_CHANGES_ED_ASSIGN,2568898575,
-sc_Edit_RID_SCDLG_COLROWNAMERANGES_ED_AREA,2568783885,
-sc_Edit_RID_SCDLG_COLROWNAMERANGES_ED_DATA,2568783889,
 sc_Edit_RID_SCDLG_CONDFORMAT_EDT_COND1_1,2568521732,
 sc_Edit_RID_SCDLG_CONDFORMAT_EDT_COND1_2,2568521735,
 sc_Edit_RID_SCDLG_CONDFORMAT_EDT_COND2_1,2568521742,
@@ -6386,8 +6384,6 @@
 sc_FloatingWindow_RID_SCDLG_TEAM,231304704,
 sc_ImageButton_FID_FUNCTION_BOX_IMB_INSERT,3651284481,
 sc_ImageButton_RID_SCDLG_CHANGES_RB_ASSIGN,2568908304,
-sc_ImageButton_RID_SCDLG_COLROWNAMERANGES_RB_AREA,2568793614,
-sc_ImageButton_RID_SCDLG_COLROWNAMERANGES_RB_DATA,2568793618,
 sc_ImageButton_RID_SCDLG_CONDFORMAT_RB_COND1_1,2568531461,
 sc_ImageButton_RID_SCDLG_CONDFORMAT_RB_COND1_2,2568531464,
 sc_ImageButton_RID_SCDLG_CONDFORMAT_RB_COND2_1,2568531471,
@@ -6406,7 +6402,6 @@
 sc_ListBox_FID_FUNCTION_BOX_DDLB_FUNC,3651276291,
 sc_ListBox_FID_FUNCTION_BOX_LB_FUNC,3651276290,
 sc_ListBox_RID_SCDLG_AUTOFORMAT_LB_FORMAT,1493536257,
-sc_ListBox_RID_SCDLG_COLROWNAMERANGES_LB_RANGE,2568785419,
 sc_ListBox_RID_SCDLG_CONDFORMAT_LB_COND1_1,2568523266,
 sc_ListBox_RID_SCDLG_CONDFORMAT_LB_COND1_2,2568523267,
 sc_ListBox_RID_SCDLG_CONDFORMAT_LB_COND1_TEMPLATE,2568523274,
@@ -6476,8 +6471,6 @@
 sc_NumericField_RID_SCPAGE_CALC_ED_STEPS,957257732,
 sc_PushButton_RID_SCDLG_AUTOFORMAT_BTN_ADD,1493537385,
 sc_PushButton_RID_SCDLG_AUTOFORMAT_BTN_REMOVE,1493537386,
-sc_PushButton_RID_SCDLG_COLROWNAMERANGES_BTN_ADD,2568786435,
-sc_PushButton_RID_SCDLG_COLROWNAMERANGES_BTN_REMOVE,2568786436,
 sc_PushButton_RID_SCDLG_CONDFORMAT_BTN_COND1_NEW,2568524322,
 sc_PushButton_RID_SCDLG_CONDFORMAT_BTN_COND2_NEW,2568524323,
 sc_PushButton_RID_SCDLG_CONDFORMAT_BTN_COND3_NEW,2568524324,
@@ -6498,8 +6491,6 @@
 sc_PushButton_TP_VALIDATION_ERROR_BTN_SEARCH,548311578,
 sc_RadioButton_RID_SCDLG_COLORROW_BTN_GROUP_COLS,1494368769,
 sc_RadioButton_RID_SCDLG_COLORROW_BTN_GROUP_ROWS,1494368771,
-sc_RadioButton_RID_SCDLG_COLROWNAMERANGES_BTN_COLHEAD,2568782351,
-sc_RadioButton_RID_SCDLG_COLROWNAMERANGES_BTN_ROWHEAD,2568782352,
 sc_RadioButton_RID_SCDLG_DPDATEGROUP_RB_AUTOEND,1495433731,
 sc_RadioButton_RID_SCDLG_DPDATEGROUP_RB_AUTOSTART,1495433729,
 sc_RadioButton_RID_SCDLG_DPDATEGROUP_RB_MANEND,1495433732,
diff --git a/source/text/scalc/01/04070400.xhp 
b/source/text/scalc/01/04070400.xhp
index 3bce811..40af002 100644
--- a/source/text/scalc/01/04070400.xhp
+++ b/source/text/scalc/01/04070400.xhp
@@ -42,24 +42,24 @@
 embed href=text/scalc/guide/address_auto.xhp#address_auto/
 paragraph role=paragraph id=par_id3155411 xml-lang=en-US l10n=U 
oldref=13The cell contents of a label range can be used like names in 
formulas - $[officename] recognizes these names in the same manner that it does 
the predefined names of the weekdays and months. These names are automatically 
completed when typed into a formula. In addition, the names defined by label 
ranges will have priority over names defined by automatically generated 
ranges./paragraph
 paragraph role=note id=par_id3147435 xml-lang=en-US l10n=U 
oldref=14You can set label ranges that contain the same labels on different 
sheets. $[officename] first searches the label ranges of the current sheet and, 
following a failed search, the ranges of other sheets./paragraph
-bookmark xml-lang=en-US 
branch=hid/sc:ListBox:RID_SCDLG_COLROWNAMERANGES:LB_RANGE id=bm_id3149958 
localize=false/
-bookmark xml-lang=en-US 
branch=hid/sc:Edit:RID_SCDLG_COLROWNAMERANGES:ED_AREA id=bm_id3148457 
localize=false/
+bookmark xml-lang=en-US 
branch=hid/modules/scalc/ui/namerangesdialog/range id=bm_id3149958 
localize=false/
+bookmark xml-lang=en-US 
branch=hid/modules/scalc/ui/namerangesdialog/edassign id=bm_id3148457 
localize=false/
 paragraph role=heading id=hd_id3145801 xml-lang=en-US level=2 
l10n=U oldref=3Range/paragraph
-paragraph role=paragraph id=par_id3154731 xml-lang=en-US l10n=U 
oldref=4ahelp hid=SC:EDIT:RID_SCDLG_COLROWNAMERANGES:ED_AREADisplays the 
cell reference of each label range./ahelp In order to remove a label range 
from the list box, select it and then click emphDelete/emph./paragraph
+paragraph role=paragraph id=par_id3154731 xml-lang=en-US l10n=U 
oldref=4ahelp hid=modules/scalc/ui/namerangesdialog/edassignDisplays the 
cell reference of each 

[PUSHED] update help ids for sc move table dialog to .ui conversion

2013-07-24 Thread via Code Review
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/5007

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


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

Gerrit-MessageType: merged
Gerrit-Change-Id: Ia8e1edefaa35173116605b99d4f69f7654290f85
Gerrit-PatchSet: 2
Gerrit-Project: help
Gerrit-Branch: master
Gerrit-Owner: gerhard öttl lo...@ogersoft.at
Gerrit-Reviewer: Caolán McNamara caol...@redhat.com

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


[PUSHED] update ids for consolidate dialog .ui conversion

2013-07-24 Thread via Code Review
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/5035

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


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I92b434dde9361c669d8c6a5cccd9bc74e56aa5cf
Gerrit-PatchSet: 2
Gerrit-Project: help
Gerrit-Branch: master
Gerrit-Owner: Tamás Csikós csks.t...@gmail.com
Gerrit-Reviewer: Caolán McNamara caol...@redhat.com

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


[PUSHED] update ids for name ranges dialog .ui conversion

2013-07-24 Thread via Code Review
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/5067

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


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I362bdeb127628ee851e3859af143b290988cce1f
Gerrit-PatchSet: 2
Gerrit-Project: help
Gerrit-Branch: master
Gerrit-Owner: Tamás Csikós csks.t...@gmail.com
Gerrit-Reviewer: Caolán McNamara caol...@redhat.com

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


[PATCH libreoffice-4-1] fdo#67093 Change traduction of Title for some more languages

2013-07-23 Thread Petr Mladek (via Code Review)
Hi,

I would like you to review the following patch:

https://gerrit.libreoffice.org/5043

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/translations 
refs/changes/43/5043/1

fdo#67093 Change traduction of Title for some more languages

For those languages that had an alternative translation for the title style in
ede3fe62d4b30ebe82d2e2b837bd5d8247b73438 - still languages left that have
identical translations

Change-Id: Ibcd7d03c9ea7608c8963d1cb9b7c2d7cbe2415d5
Reviewed-on: https://gerrit.libreoffice.org/5038
Reviewed-by: Fridrich Strba fridr...@documentfoundation.org
Tested-by: Fridrich Strba fridr...@documentfoundation.org
---
M source/as/sw/source/ui/utlui.po
M source/bg/sw/source/ui/utlui.po
M source/br/sw/source/ui/utlui.po
M source/gl/sw/source/ui/utlui.po
M source/lt/sw/source/ui/utlui.po
M source/pt-BR/sw/source/ui/utlui.po
M source/pt/sw/source/ui/utlui.po
M source/ru/sw/source/ui/utlui.po
M source/sv/sw/source/ui/utlui.po
M source/te/sw/source/ui/utlui.po
M source/uk/sw/source/ui/utlui.po
M source/zh-CN/sw/source/ui/utlui.po
M source/zh-TW/sw/source/ui/utlui.po
13 files changed, 13 insertions(+), 13 deletions(-)



diff --git a/source/as/sw/source/ui/utlui.po b/source/as/sw/source/ui/utlui.po
index 467b55e..f1b1353 100644
--- a/source/as/sw/source/ui/utlui.po
+++ b/source/as/sw/source/ui/utlui.po
@@ -3141,7 +3141,7 @@
 STR_POOLCOLL_DOC_TITEL\n
 string.text
 msgid Title
-msgstr শিৰোনাম
+msgstr শীৰ্ষক
 
 #: poolfmt.src
 msgctxt 
diff --git a/source/bg/sw/source/ui/utlui.po b/source/bg/sw/source/ui/utlui.po
index 2628690..2e1e2ea 100644
--- a/source/bg/sw/source/ui/utlui.po
+++ b/source/bg/sw/source/ui/utlui.po
@@ -3141,7 +3141,7 @@
 STR_POOLCOLL_DOC_TITEL\n
 string.text
 msgid Title
-msgstr Заглавие
+msgstr Заглавие на документ
 
 #: poolfmt.src
 msgctxt 
diff --git a/source/br/sw/source/ui/utlui.po b/source/br/sw/source/ui/utlui.po
index 0f723b2..f37d526 100644
--- a/source/br/sw/source/ui/utlui.po
+++ b/source/br/sw/source/ui/utlui.po
@@ -3141,7 +3141,7 @@
 STR_POOLCOLL_DOC_TITEL\n
 string.text
 msgid Title
-msgstr Titl
+msgstr Titl pennañ
 
 #: poolfmt.src
 msgctxt 
diff --git a/source/gl/sw/source/ui/utlui.po b/source/gl/sw/source/ui/utlui.po
index 62a5275..cbf818d 100644
--- a/source/gl/sw/source/ui/utlui.po
+++ b/source/gl/sw/source/ui/utlui.po
@@ -3141,7 +3141,7 @@
 STR_POOLCOLL_DOC_TITEL\n
 string.text
 msgid Title
-msgstr Título
+msgstr Título de documento
 
 #: poolfmt.src
 msgctxt 
diff --git a/source/lt/sw/source/ui/utlui.po b/source/lt/sw/source/ui/utlui.po
index cb70517..d8627d6 100644
--- a/source/lt/sw/source/ui/utlui.po
+++ b/source/lt/sw/source/ui/utlui.po
@@ -3142,7 +3142,7 @@
 STR_POOLCOLL_DOC_TITEL\n
 string.text
 msgid Title
-msgstr Antraštė
+msgstr Dokumento antraštė
 
 #: poolfmt.src
 msgctxt 
diff --git a/source/pt-BR/sw/source/ui/utlui.po 
b/source/pt-BR/sw/source/ui/utlui.po
index 02906b2..87e7004 100644
--- a/source/pt-BR/sw/source/ui/utlui.po
+++ b/source/pt-BR/sw/source/ui/utlui.po
@@ -3141,7 +3141,7 @@
 STR_POOLCOLL_DOC_TITEL\n
 string.text
 msgid Title
-msgstr Título
+msgstr Título principal
 
 #: poolfmt.src
 msgctxt 
diff --git a/source/pt/sw/source/ui/utlui.po b/source/pt/sw/source/ui/utlui.po
index 73c1a98..41b8a07 100644
--- a/source/pt/sw/source/ui/utlui.po
+++ b/source/pt/sw/source/ui/utlui.po
@@ -3141,7 +3141,7 @@
 STR_POOLCOLL_DOC_TITEL\n
 string.text
 msgid Title
-msgstr Título
+msgstr Título principal
 
 #: poolfmt.src
 msgctxt 
diff --git a/source/ru/sw/source/ui/utlui.po b/source/ru/sw/source/ui/utlui.po
index 06e319e..ccc0004 100644
--- a/source/ru/sw/source/ui/utlui.po
+++ b/source/ru/sw/source/ui/utlui.po
@@ -3141,7 +3141,7 @@
 STR_POOLCOLL_DOC_TITEL\n
 string.text
 msgid Title
-msgstr Заголовок
+msgstr Заглавие
 
 #: poolfmt.src
 msgctxt 
diff --git a/source/sv/sw/source/ui/utlui.po b/source/sv/sw/source/ui/utlui.po
index f3daaf5..819944c 100644
--- a/source/sv/sw/source/ui/utlui.po
+++ b/source/sv/sw/source/ui/utlui.po
@@ -3141,7 +3141,7 @@
 STR_POOLCOLL_DOC_TITEL\n
 string.text
 msgid Title
-msgstr Rubrik
+msgstr Titel
 
 #: poolfmt.src
 msgctxt 
diff --git a/source/te/sw/source/ui/utlui.po b/source/te/sw/source/ui/utlui.po
index 7a7b170..dc1ddab 100644
--- a/source/te/sw/source/ui/utlui.po
+++ b/source/te/sw/source/ui/utlui.po
@@ -3141,7 +3141,7 @@
 STR_POOLCOLL_DOC_TITEL\n
 string.text
 msgid Title
-msgstr శీర్షిక
+msgstr పత్ర శీర్షిక
 
 #: poolfmt.src
 msgctxt 
diff --git a/source/uk/sw/source/ui/utlui.po b/source/uk/sw/source/ui/utlui.po
index bd75e10..53856e1 100644
--- a/source/uk/sw/source/ui/utlui.po
+++ b/source/uk/sw/source/ui/utlui.po
@@ -3141,7 +3141,7 @@
 STR_POOLCOLL_DOC_TITEL\n
 string.text
 msgid Title
-msgstr Заголовок
+msgstr Назва
 
 #: poolfmt.src
 msgctxt 
diff --git a/source/zh-CN/sw/source/ui/utlui.po 
b/source/zh-CN/sw/source/ui/utlui.po
index c3ff05d..6bf682b 100644
--- a/source/zh-CN/sw/source/ui/utlui.po
+++ b/source/zh-CN/sw/source/ui/utlui.po
@@ -3141,7 +3141,7 @@
 

[PUSHED libreoffice-4-1] fdo#67093 Change traduction of Title for some more languages

2013-07-23 Thread Petr Mladek (via Code Review)
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/5043

Approvals:
  Petr Mladek: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: Ibcd7d03c9ea7608c8963d1cb9b7c2d7cbe2415d5
Gerrit-PatchSet: 2
Gerrit-Project: translations
Gerrit-Branch: libreoffice-4-1
Gerrit-Owner: Petr Mladek pmla...@suse.cz
Gerrit-Reviewer: Christian Lohmaier lohmaier+libreoff...@googlemail.com
Gerrit-Reviewer: Fridrich Strba fridr...@documentfoundation.org
Gerrit-Reviewer: Petr Mladek pmla...@suse.cz

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


[PATCH libreoffice-4-1-0] fdo#67093 Change traduction of Title for some more languages

2013-07-23 Thread Petr Mladek (via Code Review)
Hi,

I would like you to review the following patch:

https://gerrit.libreoffice.org/5044

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/translations 
refs/changes/44/5044/1

fdo#67093 Change traduction of Title for some more languages

For those languages that had an alternative translation for the title style in
ede3fe62d4b30ebe82d2e2b837bd5d8247b73438 - still languages left that have
identical translations

Change-Id: Ibcd7d03c9ea7608c8963d1cb9b7c2d7cbe2415d5
Reviewed-on: https://gerrit.libreoffice.org/5038
Reviewed-by: Fridrich Strba fridr...@documentfoundation.org
Tested-by: Fridrich Strba fridr...@documentfoundation.org
Reviewed-on: https://gerrit.libreoffice.org/5043
Reviewed-by: Petr Mladek pmla...@suse.cz
Tested-by: Petr Mladek pmla...@suse.cz
---
M source/as/sw/source/ui/utlui.po
M source/bg/sw/source/ui/utlui.po
M source/br/sw/source/ui/utlui.po
M source/gl/sw/source/ui/utlui.po
M source/lt/sw/source/ui/utlui.po
M source/pt-BR/sw/source/ui/utlui.po
M source/pt/sw/source/ui/utlui.po
M source/ru/sw/source/ui/utlui.po
M source/sv/sw/source/ui/utlui.po
M source/te/sw/source/ui/utlui.po
M source/uk/sw/source/ui/utlui.po
M source/zh-CN/sw/source/ui/utlui.po
M source/zh-TW/sw/source/ui/utlui.po
13 files changed, 13 insertions(+), 13 deletions(-)



diff --git a/source/as/sw/source/ui/utlui.po b/source/as/sw/source/ui/utlui.po
index 467b55e..f1b1353 100644
--- a/source/as/sw/source/ui/utlui.po
+++ b/source/as/sw/source/ui/utlui.po
@@ -3141,7 +3141,7 @@
 STR_POOLCOLL_DOC_TITEL\n
 string.text
 msgid Title
-msgstr শিৰোনাম
+msgstr শীৰ্ষক
 
 #: poolfmt.src
 msgctxt 
diff --git a/source/bg/sw/source/ui/utlui.po b/source/bg/sw/source/ui/utlui.po
index 2628690..2e1e2ea 100644
--- a/source/bg/sw/source/ui/utlui.po
+++ b/source/bg/sw/source/ui/utlui.po
@@ -3141,7 +3141,7 @@
 STR_POOLCOLL_DOC_TITEL\n
 string.text
 msgid Title
-msgstr Заглавие
+msgstr Заглавие на документ
 
 #: poolfmt.src
 msgctxt 
diff --git a/source/br/sw/source/ui/utlui.po b/source/br/sw/source/ui/utlui.po
index 0f723b2..f37d526 100644
--- a/source/br/sw/source/ui/utlui.po
+++ b/source/br/sw/source/ui/utlui.po
@@ -3141,7 +3141,7 @@
 STR_POOLCOLL_DOC_TITEL\n
 string.text
 msgid Title
-msgstr Titl
+msgstr Titl pennañ
 
 #: poolfmt.src
 msgctxt 
diff --git a/source/gl/sw/source/ui/utlui.po b/source/gl/sw/source/ui/utlui.po
index 62a5275..cbf818d 100644
--- a/source/gl/sw/source/ui/utlui.po
+++ b/source/gl/sw/source/ui/utlui.po
@@ -3141,7 +3141,7 @@
 STR_POOLCOLL_DOC_TITEL\n
 string.text
 msgid Title
-msgstr Título
+msgstr Título de documento
 
 #: poolfmt.src
 msgctxt 
diff --git a/source/lt/sw/source/ui/utlui.po b/source/lt/sw/source/ui/utlui.po
index cb70517..d8627d6 100644
--- a/source/lt/sw/source/ui/utlui.po
+++ b/source/lt/sw/source/ui/utlui.po
@@ -3142,7 +3142,7 @@
 STR_POOLCOLL_DOC_TITEL\n
 string.text
 msgid Title
-msgstr Antraštė
+msgstr Dokumento antraštė
 
 #: poolfmt.src
 msgctxt 
diff --git a/source/pt-BR/sw/source/ui/utlui.po 
b/source/pt-BR/sw/source/ui/utlui.po
index 02906b2..87e7004 100644
--- a/source/pt-BR/sw/source/ui/utlui.po
+++ b/source/pt-BR/sw/source/ui/utlui.po
@@ -3141,7 +3141,7 @@
 STR_POOLCOLL_DOC_TITEL\n
 string.text
 msgid Title
-msgstr Título
+msgstr Título principal
 
 #: poolfmt.src
 msgctxt 
diff --git a/source/pt/sw/source/ui/utlui.po b/source/pt/sw/source/ui/utlui.po
index 73c1a98..41b8a07 100644
--- a/source/pt/sw/source/ui/utlui.po
+++ b/source/pt/sw/source/ui/utlui.po
@@ -3141,7 +3141,7 @@
 STR_POOLCOLL_DOC_TITEL\n
 string.text
 msgid Title
-msgstr Título
+msgstr Título principal
 
 #: poolfmt.src
 msgctxt 
diff --git a/source/ru/sw/source/ui/utlui.po b/source/ru/sw/source/ui/utlui.po
index 06e319e..ccc0004 100644
--- a/source/ru/sw/source/ui/utlui.po
+++ b/source/ru/sw/source/ui/utlui.po
@@ -3141,7 +3141,7 @@
 STR_POOLCOLL_DOC_TITEL\n
 string.text
 msgid Title
-msgstr Заголовок
+msgstr Заглавие
 
 #: poolfmt.src
 msgctxt 
diff --git a/source/sv/sw/source/ui/utlui.po b/source/sv/sw/source/ui/utlui.po
index f3daaf5..819944c 100644
--- a/source/sv/sw/source/ui/utlui.po
+++ b/source/sv/sw/source/ui/utlui.po
@@ -3141,7 +3141,7 @@
 STR_POOLCOLL_DOC_TITEL\n
 string.text
 msgid Title
-msgstr Rubrik
+msgstr Titel
 
 #: poolfmt.src
 msgctxt 
diff --git a/source/te/sw/source/ui/utlui.po b/source/te/sw/source/ui/utlui.po
index 7a7b170..dc1ddab 100644
--- a/source/te/sw/source/ui/utlui.po
+++ b/source/te/sw/source/ui/utlui.po
@@ -3141,7 +3141,7 @@
 STR_POOLCOLL_DOC_TITEL\n
 string.text
 msgid Title
-msgstr శీర్షిక
+msgstr పత్ర శీర్షిక
 
 #: poolfmt.src
 msgctxt 
diff --git a/source/uk/sw/source/ui/utlui.po b/source/uk/sw/source/ui/utlui.po
index bd75e10..53856e1 100644
--- a/source/uk/sw/source/ui/utlui.po
+++ b/source/uk/sw/source/ui/utlui.po
@@ -3141,7 +3141,7 @@
 STR_POOLCOLL_DOC_TITEL\n
 string.text
 msgid Title
-msgstr Заголовок
+msgstr Назва
 
 #: poolfmt.src
 msgctxt 
diff --git a/source/zh-CN/sw/source/ui/utlui.po 
b/source/zh-CN/sw/source/ui/utlui.po
index c3ff05d..6bf682b 

[PUSHED libreoffice-4-1-0] fdo#67093 Change traduction of Title for some more languages

2013-07-23 Thread Bosdonnat Cedric (via Code Review)
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/5044

Approvals:
  Petr Mladek: Verified; Looks good to me, but someone else must approve
  Thorsten Behrens: Looks good to me, but someone else must approve
  Bosdonnat Cedric: Verified; Looks good to me, approved
  Fridrich Strba: Looks good to me, but someone else must approve


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

Gerrit-MessageType: merged
Gerrit-Change-Id: Ibcd7d03c9ea7608c8963d1cb9b7c2d7cbe2415d5
Gerrit-PatchSet: 2
Gerrit-Project: translations
Gerrit-Branch: libreoffice-4-1-0
Gerrit-Owner: Petr Mladek pmla...@suse.cz
Gerrit-Reviewer: Bosdonnat Cedric cedric.bosdon...@free.fr
Gerrit-Reviewer: Christian Lohmaier lohmaier+libreoff...@googlemail.com
Gerrit-Reviewer: Fridrich Strba fridr...@documentfoundation.org
Gerrit-Reviewer: Petr Mladek pmla...@suse.cz
Gerrit-Reviewer: Thorsten Behrens tbehr...@suse.com

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


[PATCH] update ids for move tab dialog .ui conversion

2013-07-23 Thread via Code Review
Hi,

I would like you to review the following patch:

https://gerrit.libreoffice.org/5047

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/help refs/changes/47/5047/1

update ids for move tab dialog .ui conversion

Change-Id: Ie0efc7dad30b37ce996b9de0e162e3ddbe024b06
---
M helpers/help_hid.lst
M source/text/scalc/01/0218.xhp
2 files changed, 6 insertions(+), 9 deletions(-)



diff --git a/helpers/help_hid.lst b/helpers/help_hid.lst
index cc6dc8e..e129ca0 100644
--- a/helpers/help_hid.lst
+++ b/helpers/help_hid.lst
@@ -6309,7 +6309,6 @@
 sc_CheckBox_RID_SCDLG_INSCONT_BTN_LINK,1493435427,
 sc_CheckBox_RID_SCDLG_INSCONT_BTN_SKIP_EMPTY,1493435425,
 sc_CheckBox_RID_SCDLG_INSCONT_BTN_TRANSPOSE,1493435426,
-sc_CheckBox_RID_SCDLG_MOVETAB_BTN_COPY,1493451781,
 sc_CheckBox_RID_SCDLG_NEWSCENARIO_CB_ATTRIB,1493845017,
 sc_CheckBox_RID_SCDLG_NEWSCENARIO_CB_COPYALL,1493845019,
 sc_CheckBox_RID_SCDLG_NEWSCENARIO_CB_PRINTFRAME,1493845015,
@@ -6431,8 +6430,6 @@
 sc_ListBox_RID_SCDLG_DPSUBTOTAL_OPT_LB_SORT_BY,1495404037,
 sc_ListBox_RID_SCDLG_IMPORTOPT_DDLB_FONT,1494175241,
 sc_ListBox_RID_SCDLG_IMPORTOPT_LB_FONT,1494175242,
-sc_ListBox_RID_SCDLG_MOVETAB_LB_DEST,1493454338,
-sc_ListBox_RID_SCDLG_MOVETAB_LB_INSERT,1493454340,
 sc_ListBox_RID_SCDLG_NEWSCENARIO_LB_COLOR,1493847574,
 sc_ListBox_RID_SCDLG_PIVOTFILTER_LB_COND1,1493749277,
 sc_ListBox_RID_SCDLG_PIVOTFILTER_LB_COND2,1493749278,
diff --git a/source/text/scalc/01/0218.xhp 
b/source/text/scalc/01/0218.xhp
index d3d0547..dd4a82f 100644
--- a/source/text/scalc/01/0218.xhp
+++ b/source/text/scalc/01/0218.xhp
@@ -45,14 +45,14 @@
   embed href=text/scalc/00/0402.xhp#btaverko/
 /section
 paragraph role=warning id=par_id2282479 xml-lang=en-US l10n=NEWWhen 
you copy and paste cells containing link 
href=text/scalc/01/04060102.xhpdate values/link between different 
spreadsheets, both spreadsheet documents must be set to the same date base. If 
date bases differ, the displayed date values will change!/paragraph
-bookmark xml-lang=en-US branch=hid/sc:ListBox:RID_SCDLG_MOVETAB:LB_DEST 
id=bm_id3146119 localize=false/
+bookmark xml-lang=en-US branch=hid/modules/scalc/ui/movetabdialog/doc 
id=bm_id3146119 localize=false/
 paragraph role=heading id=hd_id3163710 xml-lang=en-US level=2 
l10n=U oldref=3To Document/paragraph
-paragraph role=paragraph id=par_id3148645 xml-lang=en-US l10n=U 
oldref=4ahelp hid=SC:LISTBOX:RID_SCDLG_MOVETAB:LB_DESTIndicates where 
the current sheet is to be moved or copied to./ahelp Select emph- new 
document -/emph if you want to create a new location for the sheet to be 
moved or copied./paragraph
-bookmark xml-lang=en-US branch=hid/sc:ListBox:RID_SCDLG_MOVETAB:LB_INSERT 
id=bm_id3147350 localize=false/
+paragraph role=paragraph id=par_id3148645 xml-lang=en-US l10n=U 
oldref=4ahelp hid=modules/scalc/ui/movetabdialog/docIndicates where the 
current sheet is to be moved or copied to./ahelp Select emph- new document 
-/emph if you want to create a new location for the sheet to be moved or 
copied./paragraph
+bookmark xml-lang=en-US branch=hid/modules/scalc/ui/movetabdialog/table 
id=bm_id3147350 localize=false/
 paragraph role=heading id=hd_id3154012 xml-lang=en-US level=2 
l10n=U oldref=5Insert Before/paragraph
-paragraph role=paragraph id=par_id3145366 xml-lang=en-US l10n=U 
oldref=6ahelp hid=SC:LISTBOX:RID_SCDLG_MOVETAB:LB_INSERTThe current 
sheet is moved or copied in front of the selected sheet./ahelp The emph- 
move to end position -/emph option places the current sheet at the 
end./paragraph
-bookmark xml-lang=en-US branch=hid/sc:CheckBox:RID_SCDLG_MOVETAB:BTN_COPY 
id=bm_id3156283 localize=false/
+paragraph role=paragraph id=par_id3145366 xml-lang=en-US l10n=U 
oldref=6ahelp hid=modules/scalc/ui/movetabdialog/tableThe current sheet 
is moved or copied in front of the selected sheet./ahelp The emph- move to 
end position -/emph option places the current sheet at the end./paragraph
+bookmark xml-lang=en-US branch=hid/modules/scalc/ui/movetabdialog/copy 
id=bm_id3156283 localize=false/
 paragraph role=heading id=hd_id3153726 xml-lang=en-US level=2 
l10n=U oldref=7Copy/paragraph
-paragraph role=paragraph id=par_id3144764 xml-lang=en-US l10n=U 
oldref=8ahelp hid=SC:CHECKBOX:RID_SCDLG_MOVETAB:BTN_COPYSpecifies that 
the sheet is to be copied. If the option is unmarked, the sheet is 
moved./ahelp Moving sheets is the default./paragraph
+paragraph role=paragraph id=par_id3144764 xml-lang=en-US l10n=U 
oldref=8ahelp hid=modules/scalc/ui/movetabdialog/copySpecifies that the 
sheet is to be copied. If the option is unmarked, the sheet is moved./ahelp 
Moving sheets is the default./paragraph
 /body
 /helpdocument

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ie0efc7dad30b37ce996b9de0e162e3ddbe024b06
Gerrit-PatchSet: 1
Gerrit-Project: help
Gerrit-Branch: master
Gerrit-Owner: Tamás Csikós 

[PATCH] update ids for consolidate dialog .ui conversion

2013-07-22 Thread via Code Review
Hi,

I would like you to review the following patch:

https://gerrit.libreoffice.org/5035

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/help refs/changes/35/5035/1

update ids for consolidate dialog .ui conversion

Change-Id: I92b434dde9361c669d8c6a5cccd9bc74e56aa5cf
---
M helpers/help_hid.lst
M source/text/scalc/01/1207.xhp
M source/text/scalc/01/12070100.xhp
M source/text/shared/00/0001.xhp
4 files changed, 23 insertions(+), 37 deletions(-)



diff --git a/helpers/help_hid.lst b/helpers/help_hid.lst
index 7cf7da2..cc6dc8e 100644
--- a/helpers/help_hid.lst
+++ b/helpers/help_hid.lst
@@ -6287,9 +6287,6 @@
 sc_CheckBox_RID_SCDLG_CONDFORMAT_CBX_COND1,2568520705,
 sc_CheckBox_RID_SCDLG_CONDFORMAT_CBX_COND2,2568520715,
 sc_CheckBox_RID_SCDLG_CONDFORMAT_CBX_COND3,2568520725,
-sc_CheckBox_RID_SCDLG_CONSOLIDATE_BTN_BYCOL,2567521332,
-sc_CheckBox_RID_SCDLG_CONSOLIDATE_BTN_BYROW,2567521331,
-sc_CheckBox_RID_SCDLG_CONSOLIDATE_BTN_REFS,2567521341,
 sc_CheckBox_RID_SCDLG_DBNAMES_BTN_FORMAT,2567324695,
 sc_CheckBox_RID_SCDLG_DBNAMES_BTN_HEADER,2567324693,
 sc_CheckBox_RID_SCDLG_DBNAMES_BTN_SIZE,2567324694,
@@ -6360,8 +6357,6 @@
 sc_Edit_RID_SCDLG_CONDFORMAT_EDT_COND2_2,2568521745,
 sc_Edit_RID_SCDLG_CONDFORMAT_EDT_COND3_1,2568521752,
 sc_Edit_RID_SCDLG_CONDFORMAT_EDT_COND3_2,2568521755,
-sc_Edit_RID_SCDLG_CONSOLIDATE_ED_DATA_AREA,2567522337,
-sc_Edit_RID_SCDLG_CONSOLIDATE_ED_DEST_AREA,2567522347,
 sc_Edit_RID_SCDLG_DAPISERVICE_ED_NAME,1495336973,
 sc_Edit_RID_SCDLG_DAPISERVICE_ED_PASSWD,1495336977,
 sc_Edit_RID_SCDLG_DAPISERVICE_ED_SOURCE,1495336971,
@@ -6400,8 +6395,6 @@
 sc_ImageButton_RID_SCDLG_CONDFORMAT_RB_COND2_2,2568531474,
 sc_ImageButton_RID_SCDLG_CONDFORMAT_RB_COND3_1,2568531481,
 sc_ImageButton_RID_SCDLG_CONDFORMAT_RB_COND3_2,2568531484,
-sc_ImageButton_RID_SCDLG_CONSOLIDATE_RB_DATA_AREA,2567532066,
-sc_ImageButton_RID_SCDLG_CONSOLIDATE_RB_DEST_AREA,2567532076,
 sc_ImageButton_RID_SCDLG_DBNAMES_RB_DBAREA,2567335438,
 sc_ImageButton_RID_SCDLG_HIGHLIGHT_CHANGES_RB_ASSIGN,2568973840,
 sc_ImageButton_RID_SCDLG_PIVOT_LAYOUT_RB_INAREA,2567515689,
@@ -6424,9 +6417,6 @@
 sc_ListBox_RID_SCDLG_CONDFORMAT_LB_COND3_1,2568523286,
 sc_ListBox_RID_SCDLG_CONDFORMAT_LB_COND3_2,2568523287,
 sc_ListBox_RID_SCDLG_CONDFORMAT_LB_COND3_TEMPLATE,2568523294,
-sc_ListBox_RID_SCDLG_CONSOLIDATE_LB_DATA_AREA,2567523872,
-sc_ListBox_RID_SCDLG_CONSOLIDATE_LB_DEST_AREA,2567523882,
-sc_ListBox_RID_SCDLG_CONSOLIDATE_LB_FUNC,2567523852,
 sc_ListBox_RID_SCDLG_DAPIDATA_LB_DATABASE,1495354899,
 sc_ListBox_RID_SCDLG_DAPIDATA_LB_OBJTYPE,1495354903,
 sc_ListBox_RID_SCDLG_DAPISERVICE_LB_SERVICE,1495338505,
@@ -6472,7 +6462,6 @@
 sc_ModalDialog_RID_SCDLG_STRINPUT,1493467136,
 sc_ModelessDialog_RID_SCDLG_SIMPLEREF,2568994816,
 sc_MoreButton_RID_SCDLG_AUTOFORMAT_BTN_MORE,1493545576,
-sc_MoreButton_RID_SCDLG_CONSOLIDATE_BTN_MORE,2567533060,
 sc_MoreButton_RID_SCDLG_DBNAMES_BTN_MORE,2567336481,
 sc_MoreButton_RID_SCDLG_DPDATAFIELD_BTN_MORE,1495396868,
 sc_MoreButton_RID_SCDLG_PIVOTFILTER_BTN_MORE,1493758465,
@@ -6481,7 +6470,6 @@
 sc_MultiLineEdit_TP_VALIDATION_ERROR_EDT_ERROR,548309529,
 sc_MultiLineEdit_TP_VALIDATION_INPUTHELP_EDT_INPUTHELP,548293135,
 sc_MultiLineEdit_TP_VALIDATION_VALUES_EDT_LIST,548276765,
-sc_MultiListBox_RID_SCDLG_CONSOLIDATE_LB_CONSAREAS,2567523350,
 sc_MultiListBox_RID_SCDLG_DPDATAFIELD_LB_FUNC,1495387137,
 sc_MultiListBox_RID_SCDLG_PIVOTSUBT_LB_FUNC,1493830657,
 sc_MultiListBox_RID_SCDLG_SHOW_TAB_LB_ENTRYLIST,1494993931,
@@ -6500,8 +6488,6 @@
 sc_PushButton_RID_SCDLG_CONFLICTS_BTN_KEEPALLOTHERS,1495585287,
 sc_PushButton_RID_SCDLG_CONFLICTS_BTN_KEEPMINE,1495585283,
 sc_PushButton_RID_SCDLG_CONFLICTS_BTN_KEEPOTHER,1495585284,
-sc_PushButton_RID_SCDLG_CONSOLIDATE_BTN_ADD,2567524869,
-sc_PushButton_RID_SCDLG_CONSOLIDATE_BTN_REMOVE,2567524870,
 sc_PushButton_RID_SCDLG_DBNAMES_BTN_ADD,2567328259,
 sc_PushButton_RID_SCDLG_DBNAMES_BTN_REMOVE,2567328260,
 sc_PushButton_RID_SCDLG_PIVOTSUBT_BTN_OPTIONS,1493832197,
diff --git a/source/text/scalc/01/1207.xhp 
b/source/text/scalc/01/1207.xhp
index f02c208..a52a17d 100644
--- a/source/text/scalc/01/1207.xhp
+++ b/source/text/scalc/01/1207.xhp
@@ -35,27 +35,27 @@
 section id=howtoget
 embed href=text/scalc/00/0412.xhp#dnksd/
 /section
-bookmark xml-lang=en-US 
branch=hid/sc:ListBox:RID_SCDLG_CONSOLIDATE:LB_FUNC id=bm_id3149958 
localize=false/
+bookmark xml-lang=en-US 
branch=hid/modules/scalc/ui/consolidatedialog/func id=bm_id3149958 
localize=false/
 paragraph role=heading id=hd_id3150010 xml-lang=en-US level=2 
l10n=U oldref=8Function/paragraph
-paragraph role=paragraph id=par_id3149377 xml-lang=en-US l10n=U 
oldref=9ahelp hid=SC:LISTBOX:RID_SCDLG_CONSOLIDATE:LB_FUNCSelect the 
function that you want to use to consolidate the data./ahelp/paragraph
-bookmark xml-lang=en-US 
branch=hid/sc:MultiListBox:RID_SCDLG_CONSOLIDATE:LB_CONSAREAS 
id=bm_id3144764 localize=false/
+paragraph role=paragraph id=par_id3149377 xml-lang=en-US l10n=U 

[PUSHED] Downgraded the Dutch spellchecker to version 2.00 ( fdo#6303...

2013-07-22 Thread Fridrich Strba (via Code Review)
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/4987

Approvals:
  Fridrich Strba: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I2e21a40f03b44a336355500bb617865ca2704125
Gerrit-PatchSet: 4
Gerrit-Project: dictionaries
Gerrit-Branch: master
Gerrit-Owner: Thomas van der meulen meulentho...@gmail.com
Gerrit-Reviewer: Fridrich Strba fridr...@documentfoundation.org

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


[PATCH] fdo#67093 Change traduction of Title for some more languages

2013-07-22 Thread Christian Lohmaier (via Code Review)
Hi,

I would like you to review the following patch:

https://gerrit.libreoffice.org/5038

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/translations 
refs/changes/38/5038/1

fdo#67093 Change traduction of Title for some more languages

For those languages that had an alternative translation for the title style in
ede3fe62d4b30ebe82d2e2b837bd5d8247b73438 - still languages left that have
identical translations

Change-Id: Ibcd7d03c9ea7608c8963d1cb9b7c2d7cbe2415d5
---
M source/as/sw/source/ui/utlui.po
M source/bg/sw/source/ui/utlui.po
M source/br/sw/source/ui/utlui.po
M source/gl/sw/source/ui/utlui.po
M source/lt/sw/source/ui/utlui.po
M source/pt-BR/sw/source/ui/utlui.po
M source/pt/sw/source/ui/utlui.po
M source/ru/sw/source/ui/utlui.po
M source/sv/sw/source/ui/utlui.po
M source/te/sw/source/ui/utlui.po
M source/uk/sw/source/ui/utlui.po
M source/zh-CN/sw/source/ui/utlui.po
M source/zh-TW/sw/source/ui/utlui.po
13 files changed, 13 insertions(+), 13 deletions(-)



diff --git a/source/as/sw/source/ui/utlui.po b/source/as/sw/source/ui/utlui.po
index e863fd5..5623812 100644
--- a/source/as/sw/source/ui/utlui.po
+++ b/source/as/sw/source/ui/utlui.po
@@ -3141,7 +3141,7 @@
 STR_POOLCOLL_DOC_TITEL\n
 string.text
 msgid Title
-msgstr শিৰোনাম
+msgstr শীৰ্ষক
 
 #: poolfmt.src
 msgctxt 
diff --git a/source/bg/sw/source/ui/utlui.po b/source/bg/sw/source/ui/utlui.po
index 2628690..2e1e2ea 100644
--- a/source/bg/sw/source/ui/utlui.po
+++ b/source/bg/sw/source/ui/utlui.po
@@ -3141,7 +3141,7 @@
 STR_POOLCOLL_DOC_TITEL\n
 string.text
 msgid Title
-msgstr Заглавие
+msgstr Заглавие на документ
 
 #: poolfmt.src
 msgctxt 
diff --git a/source/br/sw/source/ui/utlui.po b/source/br/sw/source/ui/utlui.po
index 0f723b2..f37d526 100644
--- a/source/br/sw/source/ui/utlui.po
+++ b/source/br/sw/source/ui/utlui.po
@@ -3141,7 +3141,7 @@
 STR_POOLCOLL_DOC_TITEL\n
 string.text
 msgid Title
-msgstr Titl
+msgstr Titl pennañ
 
 #: poolfmt.src
 msgctxt 
diff --git a/source/gl/sw/source/ui/utlui.po b/source/gl/sw/source/ui/utlui.po
index 85dd133..cdbdc8b 100644
--- a/source/gl/sw/source/ui/utlui.po
+++ b/source/gl/sw/source/ui/utlui.po
@@ -3141,7 +3141,7 @@
 STR_POOLCOLL_DOC_TITEL\n
 string.text
 msgid Title
-msgstr Título
+msgstr Título de documento
 
 #: poolfmt.src
 msgctxt 
diff --git a/source/lt/sw/source/ui/utlui.po b/source/lt/sw/source/ui/utlui.po
index cb70517..d8627d6 100644
--- a/source/lt/sw/source/ui/utlui.po
+++ b/source/lt/sw/source/ui/utlui.po
@@ -3142,7 +3142,7 @@
 STR_POOLCOLL_DOC_TITEL\n
 string.text
 msgid Title
-msgstr Antraštė
+msgstr Dokumento antraštė
 
 #: poolfmt.src
 msgctxt 
diff --git a/source/pt-BR/sw/source/ui/utlui.po 
b/source/pt-BR/sw/source/ui/utlui.po
index 02906b2..87e7004 100644
--- a/source/pt-BR/sw/source/ui/utlui.po
+++ b/source/pt-BR/sw/source/ui/utlui.po
@@ -3141,7 +3141,7 @@
 STR_POOLCOLL_DOC_TITEL\n
 string.text
 msgid Title
-msgstr Título
+msgstr Título principal
 
 #: poolfmt.src
 msgctxt 
diff --git a/source/pt/sw/source/ui/utlui.po b/source/pt/sw/source/ui/utlui.po
index 73c1a98..41b8a07 100644
--- a/source/pt/sw/source/ui/utlui.po
+++ b/source/pt/sw/source/ui/utlui.po
@@ -3141,7 +3141,7 @@
 STR_POOLCOLL_DOC_TITEL\n
 string.text
 msgid Title
-msgstr Título
+msgstr Título principal
 
 #: poolfmt.src
 msgctxt 
diff --git a/source/ru/sw/source/ui/utlui.po b/source/ru/sw/source/ui/utlui.po
index 06e319e..ccc0004 100644
--- a/source/ru/sw/source/ui/utlui.po
+++ b/source/ru/sw/source/ui/utlui.po
@@ -3141,7 +3141,7 @@
 STR_POOLCOLL_DOC_TITEL\n
 string.text
 msgid Title
-msgstr Заголовок
+msgstr Заглавие
 
 #: poolfmt.src
 msgctxt 
diff --git a/source/sv/sw/source/ui/utlui.po b/source/sv/sw/source/ui/utlui.po
index f3daaf5..819944c 100644
--- a/source/sv/sw/source/ui/utlui.po
+++ b/source/sv/sw/source/ui/utlui.po
@@ -3141,7 +3141,7 @@
 STR_POOLCOLL_DOC_TITEL\n
 string.text
 msgid Title
-msgstr Rubrik
+msgstr Titel
 
 #: poolfmt.src
 msgctxt 
diff --git a/source/te/sw/source/ui/utlui.po b/source/te/sw/source/ui/utlui.po
index 7a7b170..dc1ddab 100644
--- a/source/te/sw/source/ui/utlui.po
+++ b/source/te/sw/source/ui/utlui.po
@@ -3141,7 +3141,7 @@
 STR_POOLCOLL_DOC_TITEL\n
 string.text
 msgid Title
-msgstr శీర్షిక
+msgstr పత్ర శీర్షిక
 
 #: poolfmt.src
 msgctxt 
diff --git a/source/uk/sw/source/ui/utlui.po b/source/uk/sw/source/ui/utlui.po
index e441d1f..b413a45 100644
--- a/source/uk/sw/source/ui/utlui.po
+++ b/source/uk/sw/source/ui/utlui.po
@@ -3141,7 +3141,7 @@
 STR_POOLCOLL_DOC_TITEL\n
 string.text
 msgid Title
-msgstr Заголовок
+msgstr Назва
 
 #: poolfmt.src
 msgctxt 
diff --git a/source/zh-CN/sw/source/ui/utlui.po 
b/source/zh-CN/sw/source/ui/utlui.po
index c3ff05d..6bf682b 100644
--- a/source/zh-CN/sw/source/ui/utlui.po
+++ b/source/zh-CN/sw/source/ui/utlui.po
@@ -3141,7 +3141,7 @@
 STR_POOLCOLL_DOC_TITEL\n
 string.text
 msgid Title
-msgstr 标题
+msgstr 大标题
 
 #: poolfmt.src
 msgctxt 
diff --git a/source/zh-TW/sw/source/ui/utlui.po 
b/source/zh-TW/sw/source/ui/utlui.po

  1   2   3   4   5   6   7   8   9   10   >