aboutsummaryrefslogtreecommitdiff
path: root/editors/pdfedit/files/patch-src-xpdf-goo-GString.h
diff options
context:
space:
mode:
authorMuhammad Moinur Rahman <bofh@FreeBSD.org>2023-12-29 22:50:45 +0000
committerMuhammad Moinur Rahman <bofh@FreeBSD.org>2023-12-31 00:06:25 +0000
commitbf234f895bde988a7efb0bb801463dc70752bfe2 (patch)
tree872f097a170e8e4293e46c8caf6784c8dc81c0aa /editors/pdfedit/files/patch-src-xpdf-goo-GString.h
parentf7119cc2ae9ad9e9690e9393f12f067bee0eeabb (diff)
downloadports-bf234f895bde988a7efb0bb801463dc70752bfe2.tar.gz
ports-bf234f895bde988a7efb0bb801463dc70752bfe2.zip
editors/pdfedit: Remove expired port
2023-12-31 editors/pdfedit: BROKEN on all supported versions for 2 years after the EOL of 12
Diffstat (limited to 'editors/pdfedit/files/patch-src-xpdf-goo-GString.h')
-rw-r--r--editors/pdfedit/files/patch-src-xpdf-goo-GString.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/editors/pdfedit/files/patch-src-xpdf-goo-GString.h b/editors/pdfedit/files/patch-src-xpdf-goo-GString.h
deleted file mode 100644
index 73588a273498..000000000000
--- a/editors/pdfedit/files/patch-src-xpdf-goo-GString.h
+++ /dev/null
@@ -1,40 +0,0 @@
---- src/xpdf/goo/GString.h.orig 2009-09-11 12:02:56 UTC
-+++ src/xpdf/goo/GString.h
-@@ -67,8 +67,8 @@ public:
- // t -- GString *
- // w -- blank space; arg determines width
- // To get literal curly braces, use {{ or }}.
-- static GString *format(char *fmt, ...);
-- static GString *formatv(char *fmt, va_list argList);
-+ static GString *format(const char *fmt, ...);
-+ static GString *formatv(const char *fmt, va_list argList);
-
- // Destructor.
- ~GString();
-@@ -95,8 +95,8 @@ public:
- GString *append(const char *str, int lengthA);
-
- // Append a formatted string.
-- GString *appendf(char *fmt, ...);
-- GString *appendfv(char *fmt, va_list argList);
-+ GString *appendf(const char *fmt, ...);
-+ GString *appendfv(const char *fmt, va_list argList);
-
- // Insert a character or string.
- GString *insert(int i, char c);
-@@ -125,12 +125,12 @@ private:
- void resize(int length1);
- static void formatInt(long x, char *buf, int bufSize,
- GBool zeroFill, int width, int base,
-- char **p, int *len);
-+ const char **p, int *len);
- static void formatUInt(Gulong x, char *buf, int bufSize,
- GBool zeroFill, int width, int base,
-- char **p, int *len);
-+ const char **p, int *len);
- static void formatDouble(double x, char *buf, int bufSize, int prec,
-- GBool trim, char **p, int *len);
-+ GBool trim, const char **p, int *len);
- };
-
- #if defined(WIN32) || defined(UNDER_CE)