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:
Vinaya Mandke 2013-12-09 15:13:20 +05:30 committed by Norbert Thiebaud
parent b596c6d74d
commit aefd8ff742
3 changed files with 6 additions and 7 deletions

View File

@ -3693,7 +3693,7 @@ void DomainMapper::lcl_startParagraphGroup()
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->SetIsFirstRun();
m_pImpl->SetIsFirstRun(true);
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& )
{

View File

@ -170,7 +170,7 @@ DomainMapper_Impl::DomainMapper_Impl(
m_bParaSectpr( false ),
m_bUsingEnhancedFields( false ),
m_bSdt(false),
m_isFirstRun(false),
m_bIsFirstRun(false),
m_xInsertTextRange(xInsertTextRange),
m_bIsNewDoc(bIsNewDoc),
m_bInTableStyleRunProps(false),

View File

@ -387,7 +387,7 @@ private:
bool m_bUsingEnhancedFields;
/// If the current paragraph is inside a structured document element.
bool m_bSdt;
bool m_isFirstRun;
bool m_bIsFirstRun;
//annotation import
uno::Reference< beans::XPropertySet > m_xAnnotationField;
@ -678,9 +678,8 @@ public:
void RemoveCurrentRedline( );
void ResetParaRedline( );
void SetCurrentRedlineInitials( OUString sInitials );
bool IsFirstRun() { return m_isFirstRun;}
void SetIsFirstRun() { m_isFirstRun = true;}
void UpdateIsFirstRun() { m_isFirstRun = false;}
bool IsFirstRun() { return m_bIsFirstRun;}
void SetIsFirstRun(bool bval) { m_bIsFirstRun = bval;}
void ApplySettingsTable();
SectionPropertyMap * GetSectionContext();