summaryrefslogtreecommitdiff
path: root/vcl/opengl/salbmp.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/opengl/salbmp.cxx')
-rw-r--r--vcl/opengl/salbmp.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/opengl/salbmp.cxx b/vcl/opengl/salbmp.cxx
index f5d458ed9c5b..b752f28e5617 100644
--- a/vcl/opengl/salbmp.cxx
+++ b/vcl/opengl/salbmp.cxx
@@ -421,7 +421,7 @@ public:
, mnX(0)
{}
- inline void writeRGB(sal_uInt8 nR, sal_uInt8 nG, sal_uInt8 nB)
+ void writeRGB(sal_uInt8 nR, sal_uInt8 nG, sal_uInt8 nB)
{
// calculate to which index we will write
long nScanlineIndex = mnX / mnColorsPerByte;
@@ -435,7 +435,7 @@ public:
mnX++;
}
- inline void nextLine(sal_uInt8* pScanline)
+ void nextLine(sal_uInt8* pScanline)
{
mnX = 0;
mpCurrentScanline = pScanline;