diff options
author | Kurt Zenker <kz@openoffice.org> | 2010-01-18 19:01:17 +0100 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2010-01-18 19:01:17 +0100 |
commit | fdde737ea0caf7450a6676f46651f78ee05321ab (patch) | |
tree | 5dbc2a4593fec5d89c7d32249278d212ecc97cb7 | |
parent | df7c98db5ee7ed1e910d3e96461da37c005fa263 (diff) |
masterfix: #i10000# syntax error fixed
Notes
Notes:
split repo tag: writer_ooo/DEV300_m70
-rwxr-xr-x | sw/source/core/view/vprint.cxx | 2 |
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()) |