summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2010-01-18 19:01:17 +0100
committerKurt Zenker <kz@openoffice.org>2010-01-18 19:01:17 +0100
commitfdde737ea0caf7450a6676f46651f78ee05321ab (patch)
tree5dbc2a4593fec5d89c7d32249278d212ecc97cb7
parentdf7c98db5ee7ed1e910d3e96461da37c005fa263 (diff)
masterfix: #i10000# syntax error fixed
Notes
split repo tag: writer_ooo/DEV300_m70
-rwxr-xr-xsw/source/core/view/vprint.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/view/vprint.cxx b/sw/source/core/view/vprint.cxx
index 10b62f92c68a..7a22698b87ca 100755
--- a/sw/source/core/view/vprint.cxx
+++ b/sw/source/core/view/vprint.cxx
@@ -562,7 +562,7 @@ SwPrintUIOptions::SwPrintUIOptions(
// 0 : all pages (left & right)
// 1 : left pages
// 2 : right pages
- DBG_ASSERT( rDefaultPrintData.IsPrintLeftPage() || rDefaultPrintData.IsPrintRigthPage(),
+ DBG_ASSERT( rDefaultPrintData.IsPrintLeftPage() || rDefaultPrintData.IsPrintRightPage(),
"unexpected value combination" );
sal_Int16 nPagesChoice = 0;
if (rDefaultPrintData.IsPrintLeftPage() && !rDefaultPrintData.IsPrintRightPage())