diff options
Diffstat (limited to 'vcl/qa')
-rw-r--r-- | vcl/qa/cppunit/pdfexport/pdfexport.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/qa/cppunit/pdfexport/pdfexport.cxx b/vcl/qa/cppunit/pdfexport/pdfexport.cxx index 8f82c8c3528b..6b958683d143 100644 --- a/vcl/qa/cppunit/pdfexport/pdfexport.cxx +++ b/vcl/qa/cppunit/pdfexport/pdfexport.cxx @@ -351,7 +351,7 @@ void PdfExportTest::testTdf105461() continue; unsigned int nRed = 0, nGreen = 0, nBlue = 0, nAlpha = 0; - FPDFPath_GetFillColor(pPdfPageObject, &nRed, &nGreen, &nBlue, &nAlpha); + FPDFPageObj_GetFillColor(pPdfPageObject, &nRed, &nGreen, &nBlue, &nAlpha); if (Color(nRed, nGreen, nBlue) == COL_YELLOW) ++nYellowPathCount; } @@ -406,7 +406,7 @@ void PdfExportTest::testTdf107868() continue; unsigned int nRed = 0, nGreen = 0, nBlue = 0, nAlpha = 0; - FPDFPath_GetFillColor(pPdfPageObject, &nRed, &nGreen, &nBlue, &nAlpha); + FPDFPageObj_GetFillColor(pPdfPageObject, &nRed, &nGreen, &nBlue, &nAlpha); if (Color(nRed, nGreen, nBlue) == COL_WHITE) ++nWhitePathCount; } @@ -902,7 +902,7 @@ void PdfExportTest::testTdf108963() continue; unsigned int nRed = 0, nGreen = 0, nBlue = 0, nAlpha = 0; - FPDFPath_GetFillColor(pPdfPageObject, &nRed, &nGreen, &nBlue, &nAlpha); + FPDFPageObj_GetFillColor(pPdfPageObject, &nRed, &nGreen, &nBlue, &nAlpha); if (Color(nRed, nGreen, nBlue) == COL_YELLOW) { ++nYellowPathCount; |