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

2015-07-24 Thread Krisztian Pinter
 sc/source/ui/inc/output.hxx|4 +--
 sc/source/ui/view/gridwin4.cxx |2 -
 sc/source/ui/view/output.cxx   |   52 -
 sc/source/ui/view/printfun.cxx |7 +++--
 4 files changed, 33 insertions(+), 32 deletions(-)

New commits:
commit c7350070cca3e68013b3e481d90855ab6f8344ec
Author: Krisztian Pinter pin.termina...@gmail.com
Date:   Fri Jun 19 22:55:50 2015 +0200

calc mapmode: Pass RenderContext as reference in DrawFrame

Change-Id: I6c9a476a8dea5266868c94d6a1203cfe840171cf

diff --git a/sc/source/ui/inc/output.hxx b/sc/source/ui/inc/output.hxx
index d577efa..77d50f6 100644
--- a/sc/source/ui/inc/output.hxx
+++ b/sc/source/ui/inc/output.hxx
@@ -239,7 +239,7 @@ private:
 
 double  GetStretch();
 
-voidDrawRotatedFrame( const Color* pForceColor );   // 
pixel
+voidDrawRotatedFrame(vcl::RenderContext rRenderContext, const 
Color* pForceColor);   // pixel
 
 drawinglayer::processor2d::BaseProcessor2D*  CreateProcessor2D( );
 
@@ -307,7 +307,7 @@ public:
 voidDrawBackground(vcl::RenderContext rRenderContext);
 voidDrawShadow();
 voidDrawExtraShadow(bool bLeft, bool bTop, bool bRight, bool bBottom);
-voidDrawFrame();
+voidDrawFrame(vcl::RenderContext rRenderContext);
 
 // with logic MapMode set!
 voidDrawEdit(bool bPixelToLogic);
diff --git a/sc/source/ui/view/gridwin4.cxx b/sc/source/ui/view/gridwin4.cxx
index b2e76c4..26ed6ae 100644
--- a/sc/source/ui/view/gridwin4.cxx
+++ b/sc/source/ui/view/gridwin4.cxx
@@ -743,7 +743,7 @@ void ScGridWindow::DrawContent(OutputDevice rDevice, const 
ScTableInfo rTableI
 }
 
 aOutputData.DrawShadow();
-aOutputData.DrawFrame();
+aOutputData.DrawFrame(*pContentDev);
 
 // Show Note Mark
 if ( rOpts.GetOption( VOPT_NOTES ) )
diff --git a/sc/source/ui/view/output.cxx b/sc/source/ui/view/output.cxx
index 388b0e8..de67cc3 100644
--- a/sc/source/ui/view/output.cxx
+++ b/sc/source/ui/view/output.cxx
@@ -1286,9 +1286,9 @@ size_t lclGetArrayColFromCellInfoX( sal_uInt16 
nCellInfoX, sal_uInt16 nCellInfoF
 return static_cast size_t ( bRTL ? (nCellInfoLastX + 2 - nCellInfoX) : 
(nCellInfoX - nCellInfoFirstX) );
 }
 
-void ScOutputData::DrawFrame()
+void ScOutputData::DrawFrame(vcl::RenderContext rRenderContext)
 {
-DrawModeFlags nOldDrawMode = mpDev-GetDrawMode();
+DrawModeFlags nOldDrawMode = rRenderContext.GetDrawMode();
 
 Color aSingleColor;
 bool bUseSingleColor = false;
@@ -1302,13 +1302,13 @@ void ScOutputData::DrawFrame()
 
 if ( ( nOldDrawMode  DrawModeFlags::WhiteFill )  ( nOldDrawMode  
DrawModeFlags::BlackLine ) )
 {
-mpDev-SetDrawMode( nOldDrawMode  (~DrawModeFlags::WhiteFill) );
+rRenderContext.SetDrawMode( nOldDrawMode  (~DrawModeFlags::WhiteFill) 
);
 aSingleColor.SetColor( COL_BLACK );
 bUseSingleColor = true;
 }
 else if ( ( nOldDrawMode  DrawModeFlags::SettingsFill )  ( nOldDrawMode 
 DrawModeFlags::SettingsLine ) )
 {
-mpDev-SetDrawMode( nOldDrawMode  (~DrawModeFlags::SettingsFill) );
+rRenderContext.SetDrawMode( nOldDrawMode  
(~DrawModeFlags::SettingsFill) );
 aSingleColor = rStyleSettings.GetWindowTextColor(); // same as 
used in VCL for DrawModeFlags::SettingsLine
 bUseSingleColor = true;
 }
@@ -1321,12 +1321,12 @@ void ScOutputData::DrawFrame()
 const Color* pForceColor = bUseSingleColor ? aSingleColor : 0;
 
 if (bAnyRotated)
-DrawRotatedFrame( pForceColor );// removes the lines that must 
not be painted here
+DrawRotatedFrame(rRenderContext, pForceColor);// removes the 
lines that must not be painted here
 
 long nInitPosX = nScrX;
 if ( bLayoutRTL )
 {
-Size aOnePixel = mpDev-PixelToLogic(Size(1,1));
+Size aOnePixel = rRenderContext.PixelToLogic(Size(1,1));
 long nOneX = aOnePixel.Width();
 nInitPosX += nMirrorW - nOneX;
 }
@@ -1343,12 +1343,12 @@ void ScOutputData::DrawFrame()
 // row 0 is not visible (dummy for borders from top) - subtract its height 
from initial position
 // subtract 1 unit more, because position 0 is first *in* cell, grid line 
is one unit before
 long nOldPosY = nScrY - 1 - pRowInfo[ 0 ].nHeight;
-long nOldSnapY = lclGetSnappedY( *mpDev, nOldPosY, bSnapPixel );
+long nOldSnapY = lclGetSnappedY( rRenderContext, nOldPosY, bSnapPixel );
 rArray.SetYOffset( nOldSnapY );
 for( size_t nRow = 0; nRow  nRowCount; ++nRow )
 {
 long nNewPosY = nOldPosY + pRowInfo[ nRow ].nHeight;
-long nNewSnapY = lclGetSnappedY( *mpDev, nNewPosY, bSnapPixel );
+long nNewSnapY = lclGetSnappedY( rRenderContext, nNewPosY, bSnapPixel 
);
 rArray.SetRowHeight( nRow, nNewSnapY - nOldSnapY );
 nOldPosY = nNewPosY;
 nOldSnapY = nNewSnapY;
@@ -1359,7 +1359,7 @@ void ScOutputData::DrawFrame

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

2015-07-24 Thread Krisztian Pinter
 sc/source/ui/inc/output.hxx|2 +-
 sc/source/ui/view/gridwin4.cxx |2 +-
 sc/source/ui/view/output.cxx   |   10 +-
 3 files changed, 7 insertions(+), 7 deletions(-)

New commits:
commit f1cf05d81d80c87b9942daff5d60dc0ebdd474b5
Author: Krisztian Pinter pin.termina...@gmail.com
Date:   Tue Jun 23 22:30:57 2015 +0200

calc mapmode: Pass RenderContext as reference in DrawNoteMarks

Change-Id: Id47f4001943bd40fb8476c7e6a81f257b34c2c7d

diff --git a/sc/source/ui/inc/output.hxx b/sc/source/ui/inc/output.hxx
index 77d50f6..861faf9 100644
--- a/sc/source/ui/inc/output.hxx
+++ b/sc/source/ui/inc/output.hxx
@@ -340,7 +340,7 @@ public:
 voidDrawChangeTrack();
 voidDrawClipMarks();
 
-voidDrawNoteMarks();
+voidDrawNoteMarks(vcl::RenderContext rRenderContext);
 voidAddPDFNotes();
 };
 
diff --git a/sc/source/ui/view/gridwin4.cxx b/sc/source/ui/view/gridwin4.cxx
index 26ed6ae..7282b90 100644
--- a/sc/source/ui/view/gridwin4.cxx
+++ b/sc/source/ui/view/gridwin4.cxx
@@ -747,7 +747,7 @@ void ScGridWindow::DrawContent(OutputDevice rDevice, const 
ScTableInfo rTableI
 
 // Show Note Mark
 if ( rOpts.GetOption( VOPT_NOTES ) )
-aOutputData.DrawNoteMarks();
+aOutputData.DrawNoteMarks(*pContentDev);
 
 if ( !bLogicText )
 aOutputData.DrawStrings(false); // in pixel MapMode
diff --git a/sc/source/ui/view/output.cxx b/sc/source/ui/view/output.cxx
index de67cc3..ce60133 100644
--- a/sc/source/ui/view/output.cxx
+++ b/sc/source/ui/view/output.cxx
@@ -2291,7 +2291,7 @@ void ScOutputData::DrawChangeTrack()
 }
 
 //TODO: moggi Need to check if this can't be written simpler
-void ScOutputData::DrawNoteMarks()
+void ScOutputData::DrawNoteMarks(vcl::RenderContext rRenderContext)
 {
 
 bool bFirst = true;
@@ -2329,13 +2329,13 @@ void ScOutputData::DrawNoteMarks()
 {
 if (bFirst)
 {
-mpDev-SetLineColor(COL_WHITE);
+rRenderContext.SetLineColor(COL_WHITE);
 
 const StyleSettings rStyleSettings = 
Application::GetSettings().GetStyleSettings();
 if ( mbUseStyleColor  
rStyleSettings.GetHighContrastMode() )
-mpDev-SetFillColor( 
SC_MOD()-GetColorConfig().GetColorValue(svtools::FONTCOLOR).nColor );
+rRenderContext.SetFillColor( 
SC_MOD()-GetColorConfig().GetColorValue(svtools::FONTCOLOR).nColor );
 else
-mpDev-SetFillColor(COL_LIGHTRED);
+rRenderContext.SetFillColor(COL_LIGHTRED);
 
 bFirst = false;
 }
@@ -2352,7 +2352,7 @@ void ScOutputData::DrawNoteMarks()
 }
 }
 if ( bLayoutRTL ? ( nMarkX = 0 ) : ( nMarkX  nScrX+nScrW 
) )
-mpDev-DrawRect( Rectangle( 
nMarkX-5*nLayoutSign,nPosY,nMarkX+1*nLayoutSign,nPosY+6 ) );
+rRenderContext.DrawRect( Rectangle( 
nMarkX-5*nLayoutSign,nPosY,nMarkX+1*nLayoutSign,nPosY+6 ) );
 }
 
 nPosX += pRowInfo[0].pCellInfo[nX+1].nWidth * nLayoutSign;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2015-07-22 Thread Krisztian Pinter
 sc/source/ui/inc/gridwin.hxx   |2 -
 sc/source/ui/view/gridwin4.cxx |   44 -
 2 files changed, 23 insertions(+), 23 deletions(-)

New commits:
commit 561cebeeba2155a7ebedbea885c9d7bf43102ec6
Author: Krisztian Pinter pin.termina...@gmail.com
Date:   Tue Jun 16 18:10:47 2015 +0200

calc mapmode: Pass RenderContext as reference in DrawPagePreview

Change-Id: I8c4834914b2061c928f4d1172b48d79c2fc4d842
Reviewed-on: https://gerrit.libreoffice.org/16348
Tested-by: Jenkins c...@libreoffice.org
Reviewed-by: Jan Holesovsky ke...@collabora.com

diff --git a/sc/source/ui/inc/gridwin.hxx b/sc/source/ui/inc/gridwin.hxx
index 0c940e9..c05cea9 100644
--- a/sc/source/ui/inc/gridwin.hxx
+++ b/sc/source/ui/inc/gridwin.hxx
@@ -265,7 +265,7 @@ class ScGridWindow : public vcl::Window, public 
DropTargetHelper, public DragSou
 voidDrawAfterScroll();
 Rectangle   GetListValButtonRect( const ScAddress rButtonPos );
 
-voidDrawPagePreview( SCCOL nX1, SCROW nY1, SCCOL nX2, SCROW 
nY2, OutputDevice* pContentDev );
+voidDrawPagePreview( SCCOL nX1, SCROW nY1, SCCOL nX2, SCROW 
nY2, vcl::RenderContext rRenderContext);
 
 boolGetEditUrl( const Point rPos,
 OUString* pName=0, OUString* pUrl=0, OUString* 
pTarget=0 );
diff --git a/sc/source/ui/view/gridwin4.cxx b/sc/source/ui/view/gridwin4.cxx
index 2a054d6..b2e76c4 100644
--- a/sc/source/ui/view/gridwin4.cxx
+++ b/sc/source/ui/view/gridwin4.cxx
@@ -737,7 +737,7 @@ void ScGridWindow::DrawContent(OutputDevice rDevice, const 
ScTableInfo rTableI
 // DrawPagePreview draws complete lines/page numbers, must always be 
clipped
 if ( aOutputData.SetChangedClip() )
 {
-DrawPagePreview(nX1,nY1,nX2,nY2, pContentDev);
+DrawPagePreview(nX1,nY1,nX2,nY2, *pContentDev);
 pContentDev-SetClipRegion();
 }
 }
@@ -1112,7 +1112,7 @@ void ScGridWindow::CheckNeedsRepaint()
 }
 }
 
-void ScGridWindow::DrawPagePreview( SCCOL nX1, SCROW nY1, SCCOL nX2, SCROW 
nY2, OutputDevice* pContentDev )
+void ScGridWindow::DrawPagePreview( SCCOL nX1, SCROW nY1, SCCOL nX2, SCROW 
nY2, vcl::RenderContext rRenderContext)
 {
 ScPageBreakData* pPageData = pViewData-GetView()-GetPageBreakData();
 if (pPageData)
@@ -1147,7 +1147,7 @@ void ScGridWindow::DrawPagePreview( SCCOL nX1, SCROW nY1, 
SCCOL nX2, SCROW nY2,
 {
 //  use EditEngine to draw mixed-script string
 pEditEng.reset(new ScEditEngineDefaulter( 
EditEngine::CreatePool(), true ));
-pEditEng-SetRefMapMode( pContentDev-GetMapMode() );
+pEditEng-SetRefMapMode(rRenderContext.GetMapMode());
 SfxItemSet* pEditDefaults = new SfxItemSet( 
pEditEng-GetEmptyItemSet() );
 rDefPattern.FillEditItemSet( pEditDefaults );
 pEditDefaults-Put( SvxColorItem( Color( COL_LIGHTGRAY ), 
EE_CHAR_COLOR ) );
@@ -1165,11 +1165,11 @@ void ScGridWindow::DrawPagePreview( SCCOL nX1, SCROW 
nY1, SCCOL nX2, SCROW nY2,
 // 3 pixel frame around the print area
 //  (middle pixel on the grid lines)
 
-pContentDev-SetLineColor();
+rRenderContext.SetLineColor();
 if (rData.IsAutomatic())
-pContentDev-SetFillColor( aAutomatic );
+rRenderContext.SetFillColor( aAutomatic );
 else
-pContentDev-SetFillColor( aManual );
+rRenderContext.SetFillColor( aManual );
 
 Point aStart = pViewData-GetScrPos(
 aRange.aStart.Col(), aRange.aStart.Row(), 
eWhich, true );
@@ -1186,10 +1186,10 @@ void ScGridWindow::DrawPagePreview( SCCOL nX1, SCROW 
nY1, SCCOL nX2, SCROW nY2,
 if ( aEnd.Y()  aWinSize.Height() + 10 )
 aEnd.Y() = aWinSize.Height() + 10;
 
-pContentDev-DrawRect( Rectangle( aStart, 
Point(aEnd.X(),aStart.Y()+2) ) );
-pContentDev-DrawRect( Rectangle( aStart, 
Point(aStart.X()+2,aEnd.Y()) ) );
-pContentDev-DrawRect( Rectangle( 
Point(aStart.X(),aEnd.Y()-2), aEnd ) );
-pContentDev-DrawRect( Rectangle( 
Point(aEnd.X()-2,aStart.Y()), aEnd ) );
+rRenderContext.DrawRect( Rectangle( aStart, 
Point(aEnd.X(),aStart.Y()+2) ) );
+rRenderContext.DrawRect( Rectangle( aStart, 
Point(aStart.X()+2,aEnd.Y()) ) );
+rRenderContext.DrawRect( Rectangle( 
Point(aStart.X(),aEnd.Y()-2), aEnd ) );
+rRenderContext.DrawRect( Rectangle( 
Point(aEnd.X()-2,aStart.Y()), aEnd ) );
 
 // Page breakes
 //! Display differently (dashed )
@@ -1204,12 +1204,12 @@ void ScGridWindow::DrawPagePreview( SCCOL nX1, SCROW 
nY1, SCCOL nX2, SCROW nY2

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

2015-07-10 Thread Krisztian Pinter
 sc/source/ui/inc/output.hxx|2 -
 sc/source/ui/view/gridwin4.cxx |2 -
 sc/source/ui/view/output.cxx   |   56 -
 sc/source/ui/view/printfun.cxx |4 +-
 4 files changed, 32 insertions(+), 32 deletions(-)

New commits:
commit dfd7ff70a758061f67d2fce0b09de0d5076ac42a
Author: Krisztian Pinter pin.termina...@gmail.com
Date:   Sun Jun 14 16:34:56 2015 +0200

calc mapmode: Add explicit RenderContext passing

Change-Id: I52d9c84bc6658348c249870088c38512ae169a34
Reviewed-on: https://gerrit.libreoffice.org/16277
Tested-by: Jenkins c...@libreoffice.org
Reviewed-by: Jan Holesovsky ke...@collabora.com

diff --git a/sc/source/ui/inc/output.hxx b/sc/source/ui/inc/output.hxx
index a7b96f7..d577efa 100644
--- a/sc/source/ui/inc/output.hxx
+++ b/sc/source/ui/inc/output.hxx
@@ -304,7 +304,7 @@ public:
 Rectangle LayoutStrings(bool bPixelToLogic = false, bool bPaint = true, 
const ScAddress rAddress = ScAddress());
 
 voidDrawDocumentBackground();
-voidDrawBackground();
+voidDrawBackground(vcl::RenderContext rRenderContext);
 voidDrawShadow();
 voidDrawExtraShadow(bool bLeft, bool bTop, bool bRight, bool bBottom);
 voidDrawFrame();
diff --git a/sc/source/ui/view/gridwin4.cxx b/sc/source/ui/view/gridwin4.cxx
index 9a0dfd6..4432653a 100644
--- a/sc/source/ui/view/gridwin4.cxx
+++ b/sc/source/ui/view/gridwin4.cxx
@@ -725,7 +725,7 @@ void ScGridWindow::DrawContent(OutputDevice rDevice, const 
ScTableInfo rTableI
 MapMode aPrevMapMode = pContentDev-GetMapMode();
 pContentDev-SetMapMode(MAP_PIXEL);
 
-aOutputData.DrawBackground();
+aOutputData.DrawBackground(*pContentDev);
 
 pContentDev-SetMapMode(aPrevMapMode);
 
diff --git a/sc/source/ui/view/output.cxx b/sc/source/ui/view/output.cxx
index a2cc326..388b0e8 100644
--- a/sc/source/ui/view/output.cxx
+++ b/sc/source/ui/view/output.cxx
@@ -789,7 +789,7 @@ namespace {
 
 static const double lclCornerRectTransparency = 40.0;
 
-void drawDataBars( const ScDataBarInfo* pOldDataBarInfo, vcl::RenderContext* 
pDev, const Rectangle rRect)
+void drawDataBars(vcl::RenderContext rRenderContext, const ScDataBarInfo* 
pOldDataBarInfo, const Rectangle rRect)
 {
 long nPosZero = 0;
 Rectangle aPaintRect = rRect;
@@ -825,7 +825,7 @@ void drawDataBars( const ScDataBarInfo* pOldDataBarInfo, 
vcl::RenderContext* pDe
 
 if(pOldDataBarInfo-mbGradient)
 {
-pDev-SetLineColor(pOldDataBarInfo-maColor);
+rRenderContext.SetLineColor(pOldDataBarInfo-maColor);
 Gradient aGradient(GradientStyle_LINEAR, pOldDataBarInfo-maColor, 
COL_TRANSPARENT);
 
 if(pOldDataBarInfo-mnLength  0)
@@ -833,14 +833,14 @@ void drawDataBars( const ScDataBarInfo* pOldDataBarInfo, 
vcl::RenderContext* pDe
 else
 aGradient.SetAngle(900);
 
-pDev-DrawGradient(aPaintRect, aGradient);
+rRenderContext.DrawGradient(aPaintRect, aGradient);
 
-pDev-SetLineColor();
+rRenderContext.SetLineColor();
 }
 else
 {
-pDev-SetFillColor(pOldDataBarInfo-maColor);
-pDev-DrawRect(aPaintRect);
+rRenderContext.SetFillColor(pOldDataBarInfo-maColor);
+rRenderContext.DrawRect(aPaintRect);
 }
 
 //draw axis
@@ -852,11 +852,11 @@ void drawDataBars( const ScDataBarInfo* pOldDataBarInfo, 
vcl::RenderContext* pDe
 aLineInfo.SetDashCount( 4 );
 aLineInfo.SetDistance( 3 );
 aLineInfo.SetDashLen( 3 );
-pDev-SetFillColor(pOldDataBarInfo-maAxisColor);
-pDev-SetLineColor(pOldDataBarInfo-maAxisColor);
-pDev-DrawLine(aPoint1, aPoint2, aLineInfo);
-pDev-SetLineColor();
-pDev-SetFillColor();
+rRenderContext.SetFillColor(pOldDataBarInfo-maAxisColor);
+rRenderContext.SetLineColor(pOldDataBarInfo-maAxisColor);
+rRenderContext.DrawLine(aPoint1, aPoint2, aLineInfo);
+rRenderContext.SetLineColor();
+rRenderContext.SetFillColor();
 }
 }
 
@@ -865,18 +865,18 @@ BitmapEx getIcon( ScIconSetType eType, sal_Int32 nIndex )
 return ScIconSetFormat::getBitmap( eType, nIndex );
 }
 
-void drawIconSets( const ScIconSetInfo* pOldIconSetInfo, vcl::RenderContext* 
pDev, const Rectangle rRect )
+void drawIconSets(vcl::RenderContext rRenderContext, const ScIconSetInfo* 
pOldIconSetInfo, const Rectangle rRect)
 {
 //long nSize = 16;
 ScIconSetType eType = pOldIconSetInfo-eIconSetType;
 sal_Int32 nIndex = pOldIconSetInfo-nIconIndex;
 BitmapEx rIcon = getIcon( eType, nIndex );
 long aOrigSize = std::maxlong(0,std::min(rRect.GetSize().getWidth() - 4, 
rRect.GetSize().getHeight() -4));
-pDev-DrawBitmapEx( Point( rRect.Left() +2, rRect.Top() + 2 ), 
Size(aOrigSize, aOrigSize), rIcon );
+rRenderContext.DrawBitmapEx( Point( rRect.Left() +2, rRect.Top() + 2 ), 
Size(aOrigSize, aOrigSize), rIcon );
 }
 
-void drawCells(const Color* pColor, const SvxBrushItem* pBackground

[GSoC] Cleanup internal drawing units in Calc

2015-07-06 Thread Krisztian Pinter
Hi all!

Work has been difficult on this project, I got a bit stuck.
ScOutputData::DrawRotatedBorder() turned out to be trickier than I thought;
when I try changing the points of the polygon to be drawn, it has no effect
on what is actually being drawn, and a Processor is used for drawing which
also doesn't help seeing things clearer. (I read up on Processors and it
didn't really help so far.)

Also this week I'm doing a presentation about my thesis project, and
preparation for that and travelling took up a lot of my time.

Hopefully I'll be able to get through this roadblock soon.

All the best,
Krisztian
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [GSoC] Cleanup internal drawing units in Calc

2015-06-22 Thread Krisztian Pinter
Hi!

Thanks for taking a look, you are right! I think my mistake was that I
forgot to negate the bools, which lead me to believe that bSkipX/Y were
always true.

All the best,
Krisztian

On 22 June 2015 at 13:04, Eike Rathke er...@redhat.com wrote:

 Hi Krisztian,

 On Sunday, 2015-06-21 22:11:44 +0200, Krisztian Pinter wrote:

  I also think I found some dead code, if someone could shed some light on
  the history of it, I would appreciate it. This is my patch which removes
  it: https://gerrit.libreoffice.org/#/c/16351/
  ScOutputData::DrawExtraShadow gets called with all false parameters which
  causes it to just skip any sort of drawing. It seems to be leftovers from
  some refactoring.

 I don't think so. I haven't investigated thoroughly, but to me it looks
 like only the shadow of the surrounding outer cells is suppressed in the
 false case. All inner cells still have their shadow(s) drawn.

 bool bSkipY = ( nArrY==0  !bTop ) || ( nArrY+1 == nArrCount 
 !bBottom );
 bool bSkipX = ( nArrX==nX1  !bLeft ) || ( nArrX==nX2+2  !bRight );

 does not skip for 0  nArrY  nArrCount-1 and nX1  nArrX  nX2+2

   Eike

 --
 LibreOffice Calc developer. Number formatter stricken i18n
 transpositionizer.
 GPG key ID 0x65632D3A - 2265 D7F3 A7B0 95CC 3918  630B 6A6C D5B7 6563
 2D3A
 Better use 64-bit 0x6A6CD5B765632D3A here is why: https://evil32.com/
 Care about Free Software, support the FSFE https://fsfe.org/support/?erack

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


[GSoC] Cleanup internal drawing units in Calc

2015-06-21 Thread Krisztian Pinter
Hi all!

I am still working my way down ScGridWindow::DrawContent, converting
functions to use HMMs as I go.

I also think I found some dead code, if someone could shed some light on
the history of it, I would appreciate it. This is my patch which removes
it: https://gerrit.libreoffice.org/#/c/16351/
ScOutputData::DrawExtraShadow gets called with all false parameters which
causes it to just skip any sort of drawing. It seems to be leftovers from
some refactoring.


All the best,
Krisztian
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


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

2015-06-03 Thread Krisztian Pinter
 sc/source/ui/view/gridwin4.cxx |3 ++-
 sc/source/ui/view/output.cxx   |   11 ++-
 2 files changed, 8 insertions(+), 6 deletions(-)

New commits:
commit 682d5eab3068a7889590b86120a6cfdec87f6d1f
Author: Krisztian Pinter pin.termina...@gmail.com
Date:   Fri May 29 20:03:33 2015 +0100

calc mapmode: Refactor DrawDocumentBackground to use logic units

Change-Id: I316e51bac78981263bfbee55ea5b684a40b44afa

diff --git a/sc/source/ui/view/gridwin4.cxx b/sc/source/ui/view/gridwin4.cxx
index bfda05a..de54116 100644
--- a/sc/source/ui/view/gridwin4.cxx
+++ b/sc/source/ui/view/gridwin4.cxx
@@ -718,9 +718,10 @@ void ScGridWindow::DrawContent(OutputDevice rDevice, 
const ScTableInfo rTableI
 else
 aOutputData.SetSolidBackground(true);
 
-pContentDev-SetMapMode(MAP_PIXEL);
 aOutputData.DrawDocumentBackground();
 
+pContentDev-SetMapMode(MAP_PIXEL);
+
 if ( bGridFirst  ( bGrid || bPage ) )
 aOutputData.DrawGrid( bGrid, bPage );
 
diff --git a/sc/source/ui/view/output.cxx b/sc/source/ui/view/output.cxx
index 9dfc3b7..4b33d2e 100644
--- a/sc/source/ui/view/output.cxx
+++ b/sc/source/ui/view/output.cxx
@@ -767,13 +767,14 @@ void ScOutputData::DrawDocumentBackground()
 if ( !bSolidBackground )
 return;
 
-Size aOnePixel = mpDev-PixelToLogic(Size(1,1));
-long nOneX = aOnePixel.Width();
-long nOneY = aOnePixel.Height();
-Rectangle aRect(nScrX - nOneX, nScrY - nOneY, nScrX + nScrW, nScrY + 
nScrH);
 Color aBgColor( 
SC_MOD()-GetColorConfig().GetColorValue(svtools::DOCCOLOR).nColor );
+mpDev-SetLineColor(aBgColor);
 mpDev-SetFillColor(aBgColor);
-mpDev-DrawRect(aRect);
+
+Point aScreenPos  = mpDev-PixelToLogic(Point(nScrX, nScrY));
+Size  aScreenSize = mpDev-PixelToLogic(Size(nScrW - 1,nScrH - 1));
+
+mpDev-DrawRect(Rectangle(aScreenPos, aScreenSize));
 }
 
 namespace {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[GSoC] Cleanup internal drawing units in Calc

2015-06-01 Thread Krisztian Pinter
Hi all!

Last week I started work on ScOutputData, I changed DrawDocumentBackground
and DrawGrid to draw in logic units.

https://gerrit.libreoffice.org/#/c/15984/
https://gerrit.libreoffice.org/#/c/16008/

I still use PixelToLogic conversions, but I think in the first stage of the
work I will rewrite code so it doesn't use SetMapMode(MAP_PIXEL), and in
the second stage I will change the private members of ScOutputData to be in
logic units as well, at which point the Draw* functions can be changed not
to convert between Pixels and Logic units.

All the best,
Krisztian
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[GSoC] Introduction - Krisztian Pinter - Cleanup internal drawing units in Calc

2015-05-01 Thread Krisztian Pinter
Hi All!

My name is Krisztian, I am an MSc student at the Hungarian ELTE University.
I have participated in GSoC with LibreOffice before, in 2013 with rewriting
the Start Center and in 2014 with improving the color selection. This year
I am going to be doing some refactoring work on Calc, unifying drawing
units.

I hope this summer will be as fruitful as the last two! :)

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


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

2015-03-30 Thread Krisztian Pinter
 cli_ure/source/climaker/climaker_app.cxx  |7 --
 cli_ure/source/climaker/climaker_emit.cxx |5 -
 cli_ure/source/uno_bridge/cli_data.cxx|  104 +++---
 cli_ure/source/uno_bridge/cli_proxy.cxx   |   36 ++
 cli_ure/source/uno_bridge/cli_uno.cxx |6 -
 5 files changed, 35 insertions(+), 123 deletions(-)

New commits:
commit f863d2602fca7d180f49cc4b6fb1bdba57e6a012
Author: Krisztian Pinter pin.termina...@gmail.com
Date:   Sat Mar 28 05:18:46 2015 +

fdo#57950 Replace chained append() with operator+

Replaced all in cli_ure

Change-Id: I144542f386fe26444c290edd9e23b26cb07941a6
Reviewed-on: https://gerrit.libreoffice.org/15040
Tested-by: Jenkins c...@libreoffice.org
Reviewed-by: Noel Grandin noelgran...@gmail.com

diff --git a/cli_ure/source/climaker/climaker_app.cxx 
b/cli_ure/source/climaker/climaker_app.cxx
index 42381ad..efff92d 100644
--- a/cli_ure/source/climaker/climaker_app.cxx
+++ b/cli_ure/source/climaker/climaker_app.cxx
@@ -368,12 +368,7 @@ SAL_IMPLEMENT_MAIN()
 }
 if (option_info == 0)
 {
-OUStringBuffer buf;
-buf.append(unknown option );
-buf.append( cmd_arg );
-buf.append( !  Use climaker --help to print all 
options. );
-throw RuntimeException(
-buf.makeStringAndClear() );
+throw RuntimeException(unknown option  + cmd_arg 
+ !  Use climaker --help to print all options.);
 }
 else
 {
diff --git a/cli_ure/source/climaker/climaker_emit.cxx 
b/cli_ure/source/climaker/climaker_emit.cxx
index 8706c3c..51bed9a 100644
--- a/cli_ure/source/climaker/climaker_emit.cxx
+++ b/cli_ure/source/climaker/climaker_emit.cxx
@@ -41,10 +41,7 @@ System::String^ mapUnoPolymorphicName(System::String^ 
unoName);
 static inline ::System::String ^ to_cts_name(
 OUString const  uno_name )
 {
-OUStringBuffer buf( 7 + uno_name.getLength() );
-buf.append( unoidl. );
-buf.append( uno_name );
-return ustring_to_String( buf.makeStringAndClear() );
+return ustring_to_String(unoidl. + uno_name);
 }
 
 
diff --git a/cli_ure/source/uno_bridge/cli_data.cxx 
b/cli_ure/source/uno_bridge/cli_data.cxx
index 3efd7a4..68cd3aa 100644
--- a/cli_ure/source/uno_bridge/cli_data.cxx
+++ b/cli_ure/source/uno_bridge/cli_data.cxx
@@ -443,10 +443,7 @@ typelib_TypeDescriptionReference* mapCliType(System::Type^ 
cliType)
 }
 if (retVal == NULL)
 {
-OUStringBuffer buf( 128 );
-buf.append( [cli_uno bridge] mapCliType():could not map type:  );
-buf.append(mapCliString(cliType-FullName));
-throw BridgeRuntimeError( buf.makeStringAndClear() );
+throw BridgeRuntimeError([cli_uno bridge] mapCliType():could not map 
type:  + mapCliString(cliType-FullName));
 }
 return retVal;
 }
@@ -975,11 +972,7 @@ void Bridge::map_to_uno(void * uno_data, System::Object^ 
cli_data,
 }
 default:
 {
-OUStringBuffer buf( 128 );
-buf.append( [map_to_uno(): );
-buf.append(value_td.getTypeName());
-buf.append( ] unsupported value type of any! );
-throw BridgeRuntimeError( buf.makeStringAndClear() );
+throw BridgeRuntimeError([map_to_uno(): + 
value_td.getTypeName() + ] unsupported value type of any!);
 }
 }
 }
@@ -988,20 +981,15 @@ void Bridge::map_to_uno(void * uno_data, System::Object^ 
cli_data,
 // ToDo check this
 if (assign)
 uno_any_construct( pAny, 0, 0, 0 ); // restore some valid 
any
-OUStringBuffer buf( 256 );
-buf.append( [map_to_uno():Any );
-buf.append(value_td.getTypeName());
-buf.append( ]The Any type );
-buf.append(value_td.getTypeName());
-buf.append(  does not correspond to its value type:  );
+OUString str = [map_to_uno():Any + value_td.getTypeName() + 
]The Any type  + value_td.getTypeName() +  does not correspond to its value 
type: ;
 if(aAny.Value != nullptr)
 {
 css::uno::Type td(mapCliType(aAny.Value-GetType()), 
SAL_NO_ACQUIRE);
-buf.append(td.getTypeName());
+str += td.getTypeName();
 }
 if (assign)
 uno_any_construct( pAny, 0, 0, 0 ); // restore some valid 
any
-throw BridgeRuntimeError( buf.makeStringAndClear() );
+throw BridgeRuntimeError(str);
 }
 catch (BridgeRuntimeError

[Libreoffice-commits] core.git: Changes to 'refs/changes/52/5252/3'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/52/5252/2'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/85/2285/1'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/68/2868/2'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/85/2285/2'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/52/5252/1'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/65/5365/3'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/63/5363/2'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/65/5365/1'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/68/2868/4'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/18/5318/1'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/15/8715/1'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/18/5318/2'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/54/5754/1'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/68/2868/5'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/15/8715/2'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/58/4958/1'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/68/2868/1'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/56/8656/1'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/65/5365/4'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/52/2852/1'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/52/2852/2'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/80/2680/2'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/12/6312/2'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/80/2680/4'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/16/5316/1'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/80/2680/1'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/48/2848/1'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/83/2483/3'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/12/6312/1'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/58/4958/2'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/63/5363/1'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/01/8701/4'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/53/2853/2'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/83/2483/2'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/05/4605/1'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/48/2848/3'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/50/2350/2'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/32/2732/1'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/50/2350/3'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/53/2853/3'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/83/2483/1'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/83/2283/1'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/35/2935/1'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/56/5456/3'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/41/2241/2'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/56/5456/1'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/83/2283/2'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/01/8701/3'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/02/4502/4'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/41/5841/3'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/43/5543/2'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/02/4502/2'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/86/2486/2'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/06/2506/1'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/41/5841/6'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/00/5400/1'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/79/4779/1'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/81/2481/1'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/02/4502/5'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/61/2961/2'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/43/5543/3'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/56/5756/6'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/67/5767/2'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/35/2935/4'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/64/5364/1'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/44/2244/1'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/50/2350/1'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/41/5841/4'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/43/5543/1'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/64/5364/2'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/02/4502/1'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/01/8701/1'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/13/5913/2'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/00/5400/2'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/13/5913/1'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/70/2470/1'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/41/5841/5'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/41/2241/1'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/79/4779/2'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/61/5361/2'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/70/2470/3'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/62/5362/1'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/56/5756/4'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/80/2480/1'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/62/5362/2'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/01/5901/1'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/13/5913/4'

2014-09-29 Thread Krisztian Pinter

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


[Libreoffice-commits] core.git: Changes to 'refs/changes/41/5841/2'

2014-09-29 Thread Krisztian Pinter

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


  1   2   3   >