summaryrefslogtreecommitdiff
path: root/svtools/source/control/filectrl.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svtools/source/control/filectrl.cxx')
-rw-r--r--svtools/source/control/filectrl.cxx7
1 files changed, 0 insertions, 7 deletions
diff --git a/svtools/source/control/filectrl.cxx b/svtools/source/control/filectrl.cxx
index d5442971c73f..c9ed32072914 100644
--- a/svtools/source/control/filectrl.cxx
+++ b/svtools/source/control/filectrl.cxx
@@ -33,7 +33,6 @@ using namespace ::com::sun::star::lang;
using namespace ::com::sun::star::ui;
-
FileControl::FileControl( vcl::Window* pParent, WinBits nStyle, FileControlMode nFlags ) :
Window( pParent, nStyle|WB_DIALOGCONTROL ),
maEdit( VclPtr<Edit>::Create(this, (nStyle&(~WB_BORDER))|WB_NOTABSTOP) ),
@@ -54,7 +53,6 @@ FileControl::FileControl( vcl::Window* pParent, WinBits nStyle, FileControlMode
}
-
WinBits FileControl::ImplInitStyle( WinBits nStyle )
{
if ( !( nStyle & WB_NOTABSTOP ) )
@@ -83,7 +81,6 @@ WinBits FileControl::ImplInitStyle( WinBits nStyle )
}
-
FileControl::~FileControl()
{
disposeOnce();
@@ -104,14 +101,12 @@ void FileControl::SetText( const OUString& rStr )
}
-
OUString FileControl::GetText() const
{
return maEdit->GetText();
}
-
void FileControl::StateChanged( StateChangedType nType )
{
if ( nType == StateChangedType::Enable )
@@ -151,7 +146,6 @@ void FileControl::StateChanged( StateChangedType nType )
}
-
void FileControl::Resize()
{
static long ButtonBorder = 10;
@@ -185,7 +179,6 @@ void FileControl::Resize()
}
-
IMPL_LINK_NOARG_TYPED(FileControl, ButtonHdl, Button*, void)
{
ImplBrowseFile( );