mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-18 08:02:48 +00:00
88b16273ed
Approved by: portmgr (kris) cVS: arabic/koffice-i18n/distinfo arabic/koffice-i18n/pkg-descr
13 lines
685 B
C++
13 lines
685 B
C++
--- kword/KWFrame.cpp.orig Thu Mar 23 20:59:46 2006
|
|
+++ kword/KWFrame.cpp Sat Apr 8 13:25:08 2006
|
|
@@ -671,7 +671,8 @@
|
|
// This attribute isn't part of the OASIS spec. Doesn't matter since it doesn't affect rendering
|
|
// of existing documents, only editing (and only KWord has this kind of option until now).
|
|
NewFrameBehavior defaultNfb = frameSet()->isHeaderOrFooter() ? Copy : NoFollowup;
|
|
- if ( m_newFrameBehavior != defaultNfb ) {
|
|
+ NewFrameBehavior temp_newFrameBehavior = m_newFrameBehavior;
|
|
+ if ( temp_newFrameBehavior != defaultNfb ) {
|
|
const char* value = "none";
|
|
if ( m_newFrameBehavior == Reconnect )
|
|
value = "followup";
|