This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch dev/dimmus/test
in repository efl.
View the commit online.
commit 627e98b5a39f7ba432d1653c99e239f7aa028267
Author: dimmus <dmitri.chudi...@gmail.com>
AuthorDate: Mon Oct 21 09:35:31 2024 +0500
evas: pdf - make some poppler functions static to supress warnings
---
src/generic/evas/pdf/main.cpp | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/src/generic/evas/pdf/main.cpp b/src/generic/evas/pdf/main.cpp
index 253b3f3ebf..595d30a7bb 100644
--- a/src/generic/evas/pdf/main.cpp
+++ b/src/generic/evas/pdf/main.cpp
@@ -47,7 +47,8 @@ double dpi = -1.0;
#define DEF_DPI 72.0
-Eina_Bool poppler_init(const char *file, int page_nbr, int size_w, int size_h)
+static Eina_Bool
+poppler_init(const char *file, int page_nbr, int size_w, int size_h)
{
double w, h, cw, ch;
@@ -119,14 +120,15 @@ Eina_Bool poppler_init(const char *file, int page_nbr, int size_w, int size_h)
return EINA_FALSE;
}
-void poppler_shutdown()
+static void
+poppler_shutdown()
{
delete doc;
eina_shutdown();
}
-
-void poppler_load_image(int size_w EINA_UNUSED, int size_h EINA_UNUSED)
+static void
+poppler_load_image(int size_w EINA_UNUSED, int size_h EINA_UNUSED)
{
page_renderer *renderer;
image out;
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.