Follow-up Patch
Changed variable names to Hungarian Notation Change-Id: I00f2a91f9faa4fd779851be7b48449a7be203e49 Reviewed-on: https://gerrit.libreoffice.org/7007 Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com> Tested-by: Norbert Thiebaud <nthiebaud@gmail.com>
This commit is contained in:
committed by
Norbert Thiebaud
parent
b596c6d74d
commit
aefd8ff742
@@ -3693,7 +3693,7 @@ void DomainMapper::lcl_startParagraphGroup()
|
|||||||
else if (m_pImpl->isBreakDeferred(COLUMN_BREAK))
|
else if (m_pImpl->isBreakDeferred(COLUMN_BREAK))
|
||||||
m_pImpl->GetTopContext()->Insert( PROP_BREAK_TYPE, uno::makeAny( com::sun::star::style::BreakType_COLUMN_BEFORE) );
|
m_pImpl->GetTopContext()->Insert( PROP_BREAK_TYPE, uno::makeAny( com::sun::star::style::BreakType_COLUMN_BEFORE) );
|
||||||
}
|
}
|
||||||
m_pImpl->SetIsFirstRun();
|
m_pImpl->SetIsFirstRun(true);
|
||||||
m_pImpl->clearDeferredBreaks();
|
m_pImpl->clearDeferredBreaks();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -3977,7 +3977,7 @@ void DomainMapper::lcl_utext(const sal_uInt8 * data_, size_t len)
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
m_pImpl->UpdateIsFirstRun();
|
m_pImpl->SetIsFirstRun(false);
|
||||||
}
|
}
|
||||||
catch( const uno::RuntimeException& )
|
catch( const uno::RuntimeException& )
|
||||||
{
|
{
|
||||||
|
@@ -170,7 +170,7 @@ DomainMapper_Impl::DomainMapper_Impl(
|
|||||||
m_bParaSectpr( false ),
|
m_bParaSectpr( false ),
|
||||||
m_bUsingEnhancedFields( false ),
|
m_bUsingEnhancedFields( false ),
|
||||||
m_bSdt(false),
|
m_bSdt(false),
|
||||||
m_isFirstRun(false),
|
m_bIsFirstRun(false),
|
||||||
m_xInsertTextRange(xInsertTextRange),
|
m_xInsertTextRange(xInsertTextRange),
|
||||||
m_bIsNewDoc(bIsNewDoc),
|
m_bIsNewDoc(bIsNewDoc),
|
||||||
m_bInTableStyleRunProps(false),
|
m_bInTableStyleRunProps(false),
|
||||||
|
@@ -387,7 +387,7 @@ private:
|
|||||||
bool m_bUsingEnhancedFields;
|
bool m_bUsingEnhancedFields;
|
||||||
/// If the current paragraph is inside a structured document element.
|
/// If the current paragraph is inside a structured document element.
|
||||||
bool m_bSdt;
|
bool m_bSdt;
|
||||||
bool m_isFirstRun;
|
bool m_bIsFirstRun;
|
||||||
|
|
||||||
//annotation import
|
//annotation import
|
||||||
uno::Reference< beans::XPropertySet > m_xAnnotationField;
|
uno::Reference< beans::XPropertySet > m_xAnnotationField;
|
||||||
@@ -678,9 +678,8 @@ public:
|
|||||||
void RemoveCurrentRedline( );
|
void RemoveCurrentRedline( );
|
||||||
void ResetParaRedline( );
|
void ResetParaRedline( );
|
||||||
void SetCurrentRedlineInitials( OUString sInitials );
|
void SetCurrentRedlineInitials( OUString sInitials );
|
||||||
bool IsFirstRun() { return m_isFirstRun;}
|
bool IsFirstRun() { return m_bIsFirstRun;}
|
||||||
void SetIsFirstRun() { m_isFirstRun = true;}
|
void SetIsFirstRun(bool bval) { m_bIsFirstRun = bval;}
|
||||||
void UpdateIsFirstRun() { m_isFirstRun = false;}
|
|
||||||
|
|
||||||
void ApplySettingsTable();
|
void ApplySettingsTable();
|
||||||
SectionPropertyMap * GetSectionContext();
|
SectionPropertyMap * GetSectionContext();
|
||||||
|
Reference in New Issue
Block a user