summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGabor Kelemen <gabor.kelemen.extern@allotropia.de>2023-12-01 00:22:30 +0100
committerThorsten Behrens <thorsten.behrens@allotropia.de>2023-12-07 16:53:24 +0100
commit83cc8ef8f8a459ca7a793acb220f4496b6e6af1a (patch)
tree21e47dedfdc15d787a402a2147de7db4cb751978 /include
parentc805fac1715e4955708299334e95d0dff47e32d7 (diff)
[API CHANGE] Drop unused SnapGrid/[X,Y]Axis config groups
from Impress/Draw last mention of them was removed in 2006 by: commit deef3fdfd9148ce1987b35a224998d63bb6b9d56 removing a commented out caller that was already commented out by "initial import" time Change-Id: I50fefe42a92c752727dfbf3b9d7c645492d034da Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160190 Tested-by: Jenkins Reviewed-by: Thorsten Behrens <thorsten.behrens@allotropia.de>
Diffstat (limited to 'include')
-rw-r--r--include/svx/optgrid.hxx6
1 files changed, 0 insertions, 6 deletions
diff --git a/include/svx/optgrid.hxx b/include/svx/optgrid.hxx
index ed71e62cdb53..7cdcdf8399f3 100644
--- a/include/svx/optgrid.hxx
+++ b/include/svx/optgrid.hxx
@@ -36,8 +36,6 @@ protected:
sal_uInt32 nFldDivisionX;
sal_uInt32 nFldDrawY;
sal_uInt32 nFldDivisionY;
- sal_uInt32 nFldSnapX;
- sal_uInt32 nFldSnapY;
bool bUseGridsnap:1;
bool bSynchronize:1;
bool bGridVisible:1;
@@ -50,8 +48,6 @@ public:
void SetFieldDivisionX(sal_uInt32 nSet){nFldDivisionX = nSet;}
void SetFieldDrawY ( sal_uInt32 nSet){nFldDrawY = nSet;}
void SetFieldDivisionY(sal_uInt32 nSet){nFldDivisionY = nSet;}
- void SetFieldSnapX( sal_uInt32 nSet){nFldSnapX = nSet;}
- void SetFieldSnapY ( sal_uInt32 nSet){nFldSnapY = nSet;}
void SetUseGridSnap( bool bSet ) {bUseGridsnap = bSet;}
void SetSynchronize( bool bSet ) {bSynchronize = bSet;}
void SetGridVisible( bool bSet ) {bGridVisible = bSet;}
@@ -61,8 +57,6 @@ public:
sal_uInt32 GetFieldDivisionX() const { return nFldDivisionX;}
sal_uInt32 GetFieldDrawY ( ) const { return nFldDrawY; }
sal_uInt32 GetFieldDivisionY() const { return nFldDivisionY;}
- sal_uInt32 GetFieldSnapX( ) const { return nFldSnapX; }
- sal_uInt32 GetFieldSnapY ( ) const { return nFldSnapY; }
bool GetUseGridSnap( ) const { return bUseGridsnap; }
bool GetSynchronize( ) const { return bSynchronize; }
bool GetGridVisible( ) const { return bGridVisible; }