summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/windows/winmain.c5
-rw-r--r--include/mupdf.h1
-rw-r--r--include/mupdf/version.h8
3 files changed, 1 insertions, 13 deletions
diff --git a/apps/windows/winmain.c b/apps/windows/winmain.c
index 2a2b8b21..bc731a4e 100644
--- a/apps/windows/winmain.c
+++ b/apps/windows/winmain.c
@@ -256,14 +256,11 @@ void info()
INT CALLBACK
dlogaboutproc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
{
- char msg[256];
switch(message)
{
case WM_INITDIALOG:
SetDlgItemTextA(hwnd, 0x10, gapp.filename);
- sprintf(msg, "GhostPDF v%0.2f is %s",
- PDF_VERSION / 100.0, PDF_COPYRIGHT);
- SetDlgItemTextA(hwnd, 2, msg);
+ SetDlgItemTextA(hwnd, 2, "GhostPDF is Copyright (C) 2005 artofcode, LLC");
SetDlgItemTextA(hwnd, 3, pdfapp_usage(&gapp));
return TRUE;
case WM_COMMAND:
diff --git a/include/mupdf.h b/include/mupdf.h
index 7556484a..94d47812 100644
--- a/include/mupdf.h
+++ b/include/mupdf.h
@@ -14,7 +14,6 @@ void pdf_logimage(char *fmt, ...);
void pdf_logshade(char *fmt, ...);
void pdf_logpage(char *fmt, ...);
-#include "mupdf/version.h"
#include "mupdf/syntax.h"
#include "mupdf/xref.h"
#include "mupdf/rsrc.h"
diff --git a/include/mupdf/version.h b/include/mupdf/version.h
deleted file mode 100644
index e74e3d99..00000000
--- a/include/mupdf/version.h
+++ /dev/null
@@ -1,8 +0,0 @@
-/*
- * Version strings
- */
-
-#define PDF_VERSION (1)
-#define PDF_COPYRIGHT "Copyright (C) 2005 artofcode LLC"
-#define PDF_AUTHORS "Tor Andersson"
-