summaryrefslogtreecommitdiffstats
path: root/src/Print.cpp
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@users.sourceforge.net>2011-03-06 21:55:54 +0000
committerXhmikosR <xhmikosr@users.sourceforge.net>2011-03-06 21:55:54 +0000
commitf713af7bc691f00939a45609e31bd2185415f40e (patch)
treec633e96d5b5d2671e704680c7b6f1acbcc04398d /src/Print.cpp
parent4569e7aeaa17f2f3c5f09a91df3d27ea4bde393e (diff)
downloadnotepad2-mod-f713af7bc691f00939a45609e31bd2185415f40e.zip
notepad2-mod-f713af7bc691f00939a45609e31bd2185415f40e.tar.gz
notepad2-mod-f713af7bc691f00939a45609e31bd2185415f40e.tar.bz2
merge "notepad2_4.2.25" branch into the trunk
git-svn-id: https://notepad2-mod.googlecode.com/svn/trunk@426 28bd50df-7adb-d945-0439-6e466c6a13cc
Diffstat (limited to 'src/Print.cpp')
-rw-r--r--src/Print.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Print.cpp b/src/Print.cpp
index 206a176..d46b1f9 100644
--- a/src/Print.cpp
+++ b/src/Print.cpp
@@ -12,7 +12,7 @@
*
* See License.txt for details about distribution and modification.
*
-* (c) Florian Balmer 1996-2010
+* (c) Florian Balmer 1996-2011
* florian.balmer@gmail.com
* http://www.flos-freeware.ch
*
@@ -343,7 +343,7 @@ extern "C" BOOL EditPrint(HWND hwnd,LPCWSTR pszDocTitle,LPCWSTR pszPageFormat)
if (printPage) {
// Show wait cursor...
- SendMessage(hwnd,SCI_SETCURSOR,SC_CURSORWAIT,0);
+ SendMessage(hwnd,SCI_SETCURSOR,(WPARAM)SC_CURSORWAIT,0);
// Display current page number in Statusbar
StatusUpdatePrintPage(pageNum);
@@ -440,7 +440,7 @@ extern "C" BOOL EditPrint(HWND hwnd,LPCWSTR pszDocTitle,LPCWSTR pszPageFormat)
StatusSetSimple(hwndStatus,FALSE);
// Remove wait cursor...
- SendMessage(hwnd,SCI_SETCURSOR,SC_CURSORNORMAL,0);
+ SendMessage(hwnd,SCI_SETCURSOR,(WPARAM)SC_CURSORNORMAL,0);
return TRUE;
}