[ABANDONED] fdo#64947:set digit language, before OutputDevice draw text.

2013-06-15 Thread abdulmajeed ahmed (via Code Review)
abdulmajeed ahmed has abandoned this change.

Change subject: fdo#64947:set digit language, before OutputDevice draw text.
..


Patch Set 5: Abandoned

it's not the optimal solution 
there is a another way to do it

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

Gerrit-MessageType: abandon
Gerrit-Change-Id: Ie54193d938e0b6ab6bccb6decb9f245037aebb4b
Gerrit-PatchSet: 5
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: navin patidar pati...@kacst.edu.sa
Gerrit-Reviewer: Eike Rathke er...@redhat.com
Gerrit-Reviewer: Fridrich Strba fridr...@documentfoundation.org
Gerrit-Reviewer: abdulmajeed ahmed aalabdulraz...@kacst.edu.sa
Gerrit-Reviewer: navin patidar pati...@kacst.edu.sa

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


[PUSHED] prevent increase indent from running outside the cell

2013-06-15 Thread abdulmajeed ahmed (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/4030

Approvals:
  abdulmajeed ahmed: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I8d4518845f64044dea2f4ecd393cc625eebc6302
Gerrit-PatchSet: 3
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: abdulmajeed ahmed aalabdulraz...@kacst.edu.sa
Gerrit-Reviewer: Markus Mohrhard markus.mohrh...@googlemail.com
Gerrit-Reviewer: abdulmajeed ahmed aalabdulraz...@kacst.edu.sa

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


[PATCH] prevent increase indent from running outside the cell

2013-05-24 Thread abdulmajeed ahmed (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/4030

To pull it, you can do:

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

prevent increase indent from running outside the cell

i have take ColWidth value and take out 200 to keep at lesat on letter inside 
the cell

Change-Id: I8d4518845f64044dea2f4ecd393cc625eebc6302
---
M sc/source/core/data/attarray.cxx
1 file changed, 5 insertions(+), 2 deletions(-)



diff --git a/sc/source/core/data/attarray.cxx b/sc/source/core/data/attarray.cxx
index 7ef3103..dc3ab8a 100644
--- a/sc/source/core/data/attarray.cxx
+++ b/sc/source/core/data/attarray.cxx
@@ -1656,12 +1656,15 @@
 || ((const SvxHorJustifyItem*)pItem)-GetValue() != 
SVX_HOR_JUSTIFY_LEFT );
 sal_uInt16 nOldValue = ((const SfxUInt16Item)rOldSet.Get( ATTR_INDENT 
)).GetValue();
 sal_uInt16 nNewValue = nOldValue;
+//to keep Increment indent from running outside the cell
+long nColWidth = (long)pDocument-GetColWidth(nCol,nTab);
+
 if ( bIncrement )
 {
-if ( nNewValue  SC_MAX_INDENT )
+if ( nNewValue  nColWidth-200 )
 {
 nNewValue += SC_INDENT_STEP;
-if ( nNewValue  SC_MAX_INDENT ) nNewValue = SC_MAX_INDENT;
+if ( nNewValue  nColWidth-200 ) nNewValue = nColWidth-200;
 }
 }
 else

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I8d4518845f64044dea2f4ecd393cc625eebc6302
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: abdulmajeed ahmed aalabdulraz...@kacst.edu.sa

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


[PATCH] fdo#63592 this new patch will solve context numerical proble...

2013-04-27 Thread abdulmajeed ahmed (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/3629

To pull it, you can do:

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

fdo#63592 this new patch will solve context numerical problem

Change-Id: I5598fd9dab823c738a812537743695ec88690a24
---
M sc/source/ui/view/formatsh.cxx
1 file changed, 9 insertions(+), 1 deletion(-)



diff --git a/sc/source/ui/view/formatsh.cxx b/sc/source/ui/view/formatsh.cxx
index 3f2b26d..7c66d1c 100644
--- a/sc/source/ui/view/formatsh.cxx
+++ b/sc/source/ui/view/formatsh.cxx
@@ -2056,7 +2056,13 @@
 {
 ScTabViewShell* pTabViewShell = GetViewData()-GetViewShell();
 pTabViewShell-HideListBox();   // Autofilter-DropDown-Listbox
-
+bool bEditMode = false;
+if ( GetViewData()-HasEditView( GetViewData()-GetActivePart() ) )
+   {
+   bEditMode=true;
+   SC_MOD()-InputEnterHandler();
+   pTabViewShell-UpdateInputHandler();
+   }
 sal_uInt16 nSlot = rReq.GetSlot();
 switch( nSlot )
 {
@@ -2112,6 +2118,8 @@
 }
 break;
 }
+if (bEditMode)
+SC_MOD()-SetInputMode( SC_INPUT_TABLE );
 }
 
 void ScFormatShell::GetTextDirectionState( SfxItemSet rSet )

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I5598fd9dab823c738a812537743695ec88690a24
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: abdulmajeed ahmed aalabdulraz...@kacst.edu.sa

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


[PATCH] fdo#63592 Changing Text Direction take out from edit mode

2013-04-16 Thread abdulmajeed ahmed (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/3406

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/06/3406/1

fdo#63592 Changing Text Direction take out from edit mode

Change-Id: I6a8156b64c126d5009ca3e81069ad0c525447077
---
M sc/source/ui/view/formatsh.cxx
1 file changed, 1 insertion(+), 0 deletions(-)



diff --git a/sc/source/ui/view/formatsh.cxx b/sc/source/ui/view/formatsh.cxx
index d35c0f3..d849c43 100644
--- a/sc/source/ui/view/formatsh.cxx
+++ b/sc/source/ui/view/formatsh.cxx
@@ -2056,6 +2056,7 @@
 }
 break;
 }
+SC_MOD()-SetInputMode( SC_INPUT_TABLE );
 }
 
 void ScFormatShell::GetTextDirectionState( SfxItemSet rSet )

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I6a8156b64c126d5009ca3e81069ad0c525447077
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: abdulmajeed ahmed aalabdulraz...@kacst.edu.sa

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


[PATCH] Code enhancement remove duplicate code from presenter consol...

2012-12-24 Thread abdulmajeed ahmed (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1480

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/80/1480/1

Code enhancement remove duplicate code from presenter console

Change-Id: Ibbb131b64c66307d38a135ac570c1e2ed37bef6c
---
M sdext/source/presenter/PresenterWindowManager.cxx
1 file changed, 28 insertions(+), 97 deletions(-)


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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ibbb131b64c66307d38a135ac570c1e2ed37bef6c
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: abdulmajeed ahmed aalabdulraz...@kacst.edu.sa

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


Fix RTL presnter console standrad layout mode

2012-12-01 Thread abdulmajeed ahmed (via Code Review)
abdulmajeed ahmed has abandoned this change.

Change subject: Fix RTL presnter console standrad layout mode
..


Patch Set 1: Abandoned

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

Gerrit-MessageType: abandon
Gerrit-Change-Id: I7ba73005f9371dcc844c2e44a3eea99b7aac30f7
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: abdulmajeed ahmed aalabdulraz...@kacst.edu.sa
Gerrit-Reviewer: David Tardon dtar...@redhat.com
Gerrit-Reviewer: Lior Kaplan kaplanl...@gmail.com
Gerrit-Reviewer: Michael Meeks michael.me...@suse.com

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


[PATCH] fdo#43901 fdo#42577 RTL tollbars mirroring fdo#56412

2012-11-28 Thread abdulmajeed ahmed (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1187

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/87/1187/1

fdo#43901  fdo#42577 RTL tollbars mirroring  fdo#56412

Change-Id: I32dd8cdd34965bf8dd31729a79b65d8ee78af7dc
---
M vcl/source/window/window.cxx
1 file changed, 1 insertion(+), 1 deletion(-)


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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I32dd8cdd34965bf8dd31729a79b65d8ee78af7dc
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: abdulmajeed ahmed aalabdulraz...@kacst.edu.sa

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


[PATCH] Fix RTL presnter console standrad layout mode

2012-11-10 Thread abdulmajeed ahmed (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1028

To pull it, you can do:

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

Fix RTL presnter console standrad layout mode

Change-Id: I7ba73005f9371dcc844c2e44a3eea99b7aac30f7
---
M sdext/Library_presenter.mk
M sdext/source/presenter/PresenterWindowManager.cxx
2 files changed, 42 insertions(+), 2 deletions(-)


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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I7ba73005f9371dcc844c2e44a3eea99b7aac30f7
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: abdulmajeed ahmed aalabdulraz...@kacst.edu.sa

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


[PATCH] Modifying comments to meet doxygen standards

2012-09-18 Thread abdulmajeed ahmed (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/638

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/38/638/1

Modifying comments to meet doxygen standards

Change-Id: Ibc60c20241b70492aaebcebccb738c7e11fdbb41
---
M sw/inc/node.hxx
M sw/inc/numrule.hxx
M sw/inc/pagedesc.hxx
M sw/inc/pagepreviewlayout.hxx
M sw/inc/pam.hxx
M sw/inc/paratr.hxx
M sw/inc/poolfmt.hxx
M sw/inc/printdata.hxx
M sw/inc/reffld.hxx
M sw/inc/ring.hxx
10 files changed, 447 insertions(+), 447 deletions(-)


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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ibc60c20241b70492aaebcebccb738c7e11fdbb41
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: abdulmajeed ahmed aalabdulraz...@kacst.edu.sa

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


[PATCH] Modifying comments to meet doxygen standards

2012-09-11 Thread abdulmajeed ahmed (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/596

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/96/596/1

Modifying comments to meet doxygen standards

Change-Id: I363ce532c7d11e798c2a5cc67b1b7893dcd0a389
---
M sw/inc/fmtrfmrk.hxx
M sw/inc/fmtruby.hxx
M sw/inc/fmturl.hxx
M sw/inc/fmtwrapinfluenceonobjpos.hxx
M sw/inc/format.hxx
M sw/inc/frmfmt.hxx
M sw/inc/hhcwrp.hxx
M sw/inc/hints.hxx
M sw/inc/htmltbl.hxx
M sw/inc/iodetect.hxx
M sw/inc/istyleaccess.hxx
M sw/inc/lineinfo.hxx
M sw/inc/ndarr.hxx
M sw/inc/ndgrf.hxx
M sw/inc/ndhints.hxx
M sw/inc/ndole.hxx
M sw/inc/ndtxt.hxx
17 files changed, 448 insertions(+), 448 deletions(-)


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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I363ce532c7d11e798c2a5cc67b1b7893dcd0a389
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: abdulmajeed ahmed aalabdulraz...@kacst.edu.sa

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


[PATCH] fdo#40014 Add new shortcut for page preview CTRL + SHIFT + O

2012-09-08 Thread abdulmajeed ahmed (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/587

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/87/587/1

fdo#40014 Add new shortcut for page preview CTRL + SHIFT + O

Change-Id: Ib09b581d5cc8dabf48aceddcc7639ca0e61b72dc
---
M officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
1 file changed, 25 insertions(+), 0 deletions(-)


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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ib09b581d5cc8dabf48aceddcc7639ca0e61b72dc
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: abdulmajeed ahmed aalabdulraz...@kacst.edu.sa

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