summaryrefslogtreecommitdiff
path: root/apps/win_main.c
diff options
context:
space:
mode:
authorRobin Watts <robin.watts@artifex.com>2012-03-07 20:53:31 +0000
committerRobin Watts <robin.watts@artifex.com>2012-03-07 20:53:31 +0000
commit7a2973ba2c4865f42d02a4f878ce51ab7d72c394 (patch)
tree0ca4fe90d624796cd039f4e8608c770774d44c70 /apps/win_main.c
parentc4e870b5422207e6ca31eb2cd6694ba44faec21e (diff)
downloadmupdf-7a2973ba2c4865f42d02a4f878ce51ab7d72c394.tar.xz
More release tidyups.
Add some function documentation to fitz.h. Add fz_ prefix to runetochar, chartorune, runelen etc. Change fz_runetochar to avoid passing unnecessary pointer.
Diffstat (limited to 'apps/win_main.c')
-rw-r--r--apps/win_main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/win_main.c b/apps/win_main.c
index 6cb1f7e1..3417a11e 100644
--- a/apps/win_main.c
+++ b/apps/win_main.c
@@ -1,5 +1,5 @@
#include "fitz.h"
-#include "mupdf-internal.h"
+#include "mupdf.h"
#include "muxps.h"
#include "mucbz.h"
#include "pdfapp.h"
@@ -317,7 +317,7 @@ void wintitle(pdfapp_t *app, char *title)
sp = title;
while (*sp && dp < wide + 255)
{
- sp += chartorune(&rune, sp);
+ sp += fz_chartorune(&rune, sp);
*dp++ = rune;
}
*dp = 0;