summaryrefslogtreecommitdiff
path: root/apps/windows
diff options
context:
space:
mode:
authorTor Andersson <tor@ghostscript.com>2005-05-24 09:50:27 +0200
committerTor Andersson <tor@ghostscript.com>2005-05-24 09:50:27 +0200
commit4bb1d274f49678af1612179d632ebcca7666f235 (patch)
tree88f4ef04de3642f73a477a937e5eb3eda0cfe9e9 /apps/windows
parent5d192ce275815e6f3eb8eb1015b02612180a8e56 (diff)
downloadmupdf-4bb1d274f49678af1612179d632ebcca7666f235.tar.xz
kill version.h
Diffstat (limited to 'apps/windows')
-rw-r--r--apps/windows/winmain.c5
1 files changed, 1 insertions, 4 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: