diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2012-01-28 18:53:25 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2012-01-28 18:54:01 +0100 |
commit | 763b3e1e598ae0ebe29c9168f5dc2a73f910ce38 (patch) | |
tree | 3ac32af5acc260423ffdbd6724f4919e7ceb64f8 /sd | |
parent | 9fedf7bcfa4cb3e0064e68b96b12c7f4a43f17a6 (diff) |
Fix duplicateExpression style Same expression on both sides of '&&
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/view/outlview.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/view/outlview.cxx b/sd/source/ui/view/outlview.cxx index 53ebbb429144..85239e8ef951 100644 --- a/sd/source/ui/view/outlview.cxx +++ b/sd/source/ui/view/outlview.cxx @@ -1620,7 +1620,7 @@ IMPL_LINK(OutlineView, EventMultiplexerListener, ::sd::tools::EventMultiplexerEv break; case tools::EventMultiplexerEvent::EID_PAGE_ORDER: - if (mpOutliner != NULL && mpDoc!=NULL && mpOutliner != NULL && dynamic_cast<Outliner*> ( mpOutliner )->GetIgnoreCurrentPageChangesLevel()==0) + if (mpOutliner != NULL && mpDoc!=NULL && dynamic_cast<Outliner*> ( mpOutliner )->GetIgnoreCurrentPageChangesLevel()==0) { if (((mpDoc->GetPageCount()-1)%2) == 0) { |