aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2003-01-01 05:25:59 +0000
committernyamatongwe <devnull@localhost>2003-01-01 05:25:59 +0000
commita8c1cf08e4700ea74c2b97f8e393af68fe5dc286 (patch)
tree8d2918e65ba317deb7cc79f8a9be7317bf30789e /include
parent4cb12c84a0682f82fcd5fc113a5a87ea42ece5c1 (diff)
downloadscintilla-mirror-a8c1cf08e4700ea74c2b97f8e393af68fe5dc286.tar.gz
Changed wrapped printing to be more similar to wrapped display.
Diffstat (limited to 'include')
-rw-r--r--include/Scintilla.h4
-rw-r--r--include/Scintilla.iface6
2 files changed, 5 insertions, 5 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h
index ad6837cb2..fbaa46516 100644
--- a/include/Scintilla.h
+++ b/include/Scintilla.h
@@ -505,8 +505,8 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam,
#define CARET_EVEN 0x08
#define SCI_SETXCARETPOLICY 2402
#define SCI_SETYCARETPOLICY 2403
-#define SCI_SETPRINTWRAPS 2406
-#define SCI_GETPRINTWRAPS 2407
+#define SCI_SETPRINTWRAPMODE 2406
+#define SCI_GETPRINTWRAPMODE 2407
#define SCI_STARTRECORD 3001
#define SCI_STOPRECORD 3002
#define SCI_SETLEXER 4001
diff --git a/include/Scintilla.iface b/include/Scintilla.iface
index a1c785452..7775cebab 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -1363,11 +1363,11 @@ fun void SetXCaretPolicy=2402(int caretPolicy, int caretSlop)
# The exclusion zone is given in lines.
fun void SetYCaretPolicy=2403(int caretPolicy, int caretSlop)
-# Set printing to line wrapped (true) or not line wrapped.
-set void SetPrintWraps=2406(bool wraps,)
+# Set printing to line wrapped (SC_WRAP_WORD) or not line wrapped (SC_WRAP_NONE).
+set void SetPrintWrapMode=2406(int mode,)
# Is printing line wrapped.
-get bool GetPrintWraps=2407(,)
+get int GetPrintWrapMode=2407(,)
# Start notifying the container of all key presses and commands.
fun void StartRecord=3001(,)