summaryrefslogtreecommitdiff
path: root/include/svtools/editimplementation.hxx
diff options
context:
space:
mode:
authorAlexander Wilms <f.alexander.wilms@gmail.com>2014-02-25 19:06:16 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-03-01 09:51:32 -0600
commit8792ec7b2129650777b7b4bfacaa7c13d923279b (patch)
treef181e37b61533b460397cc68625fd21f46bb6393 /include/svtools/editimplementation.hxx
parentdff29fadfe418421f2af9fd4f1dccc8a9b4cd545 (diff)
Remove visual noise from include
Conflicts: include/framework/preventduplicateinteraction.hxx include/sfx2/sfxbasecontroller.hxx include/sfx2/sfxbasemodel.hxx include/toolkit/awt/vclxtabpagemodel.hxx include/vcl/field.hxx include/vcl/settings.hxx Change-Id: Ibccf9f88c68267a3d7e656012b51eaf644c418c2 Reviewed-on: https://gerrit.libreoffice.org/8272 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/svtools/editimplementation.hxx')
-rw-r--r--include/svtools/editimplementation.hxx34
1 files changed, 17 insertions, 17 deletions
diff --git a/include/svtools/editimplementation.hxx b/include/svtools/editimplementation.hxx
index c6de2b783113..96eaf50964a0 100644
--- a/include/svtools/editimplementation.hxx
+++ b/include/svtools/editimplementation.hxx
@@ -21,21 +21,21 @@
#error "not to be included directly!"
#endif
-//----------------------------------------------------------------------
+
template <class EDIT>
GenericEditImplementation< EDIT >::GenericEditImplementation( EDIT& _rEdit )
:m_rEdit( _rEdit )
{
}
-//----------------------------------------------------------------------
+
template <class EDIT>
Control& GenericEditImplementation< EDIT >::GetControl()
{
return m_rEdit;
}
-//----------------------------------------------------------------------
+
template <class EDIT>
OUString GenericEditImplementation< EDIT >::GetText( LineEnd ) const
{
@@ -43,98 +43,98 @@ OUString GenericEditImplementation< EDIT >::GetText( LineEnd ) const
return m_rEdit.GetText( );
}
-//----------------------------------------------------------------------
+
template <class EDIT>
void GenericEditImplementation< EDIT >::SetText( const OUString& _rStr )
{
m_rEdit.SetText( _rStr );
}
-//----------------------------------------------------------------------
+
template <class EDIT>
Selection GenericEditImplementation< EDIT >::GetSelection() const
{
return m_rEdit.GetSelection( );
}
-//----------------------------------------------------------------------
+
template <class EDIT>
void GenericEditImplementation< EDIT >::SetSelection( const Selection& _rSelection )
{
m_rEdit.SetSelection( _rSelection );
}
-//----------------------------------------------------------------------
+
template <class EDIT>
void GenericEditImplementation< EDIT >::SetReadOnly( sal_Bool bReadOnly )
{
m_rEdit.SetReadOnly( bReadOnly );
}
-//----------------------------------------------------------------------
+
template <class EDIT>
sal_Bool GenericEditImplementation< EDIT >::IsReadOnly() const
{
return m_rEdit.IsReadOnly();
}
-//----------------------------------------------------------------------
+
template <class EDIT>
void GenericEditImplementation< EDIT >::ReplaceSelected( const OUString& _rStr )
{
m_rEdit.ReplaceSelected( _rStr );
}
-//----------------------------------------------------------------------
+
template <class EDIT>
void GenericEditImplementation< EDIT >::DeleteSelected()
{
m_rEdit.DeleteSelected();
}
-//----------------------------------------------------------------------
+
template <class EDIT>
OUString GenericEditImplementation< EDIT >::GetSelected( LineEnd ) const
{
return m_rEdit.GetSelected( );
}
-//----------------------------------------------------------------------
+
template <class EDIT>
void GenericEditImplementation< EDIT >::SetMaxTextLen( sal_Int32 _nMaxLen )
{
m_rEdit.SetMaxTextLen( _nMaxLen );
}
-//----------------------------------------------------------------------
+
template <class EDIT>
sal_Int32 GenericEditImplementation< EDIT >::GetMaxTextLen() const
{
return m_rEdit.GetMaxTextLen( );
}
-//----------------------------------------------------------------------
+
template <class EDIT>
void GenericEditImplementation< EDIT >::SetModified()
{
m_rEdit.SetModifyFlag();
}
-//----------------------------------------------------------------------
+
template <class EDIT>
sal_Bool GenericEditImplementation< EDIT >::IsModified() const
{
return m_rEdit.IsModified();
}
-//----------------------------------------------------------------------
+
template <class EDIT>
void GenericEditImplementation< EDIT >::ClearModified()
{
m_rEdit.ClearModifyFlag();
}
-//----------------------------------------------------------------------
+
template <class EDIT>
void GenericEditImplementation< EDIT >::SetModifyHdl( const Link& _rLink )
{