summaryrefslogtreecommitdiffstats
path: root/fpicker/test
diff options
context:
space:
mode:
authorAlexander Wilms <f.alexander.wilms@gmail.com>2014-02-22 21:20:15 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-02-23 03:38:49 +0000
commit0ce0c369aa8880dff9fe874ba85ec6f52ee37ddf (patch)
tree5024cba9f9ea5e3b23ea26025323f6aef39488d0 /fpicker/test
parentfdo#70414: Use correct target names for building Visual Studio projects. (diff)
downloadcore-0ce0c369aa8880dff9fe874ba85ec6f52ee37ddf.tar.gz
core-0ce0c369aa8880dff9fe874ba85ec6f52ee37ddf.zip
Remove unneccessary comments
Change-Id: I939160ae72fecbe3d4a60ce755730bd4c38497fb Reviewed-on: https://gerrit.libreoffice.org/8182 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'fpicker/test')
-rw-r--r--fpicker/test/svdem.cxx26
1 files changed, 13 insertions, 13 deletions
diff --git a/fpicker/test/svdem.cxx b/fpicker/test/svdem.cxx
index aa6538663f04..b4127c212cf6 100644
--- a/fpicker/test/svdem.cxx
+++ b/fpicker/test/svdem.cxx
@@ -56,14 +56,14 @@
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::lang;
-// -----------------------------------------------------------------------
+
// Forward declaration
void Main();
String aEmptyStr;
-// -----------------------------------------------------------------------
+
SAL_IMPLEMENT_MAIN()
{
@@ -85,7 +85,7 @@ SAL_IMPLEMENT_MAIN()
return 0;
}
-// -----------------------------------------------------------------------
+
class MyWin : public WorkWindow
{
@@ -107,7 +107,7 @@ private:
};
-// -----------------------------------------------------------------------
+
void Main()
{
@@ -118,7 +118,7 @@ void Main()
Application::Execute();
}
-// -----------------------------------------------------------------------
+
MyWin::MyWin( Window* pParent, WinBits nWinStyle )
:WorkWindow( pParent, nWinStyle )
@@ -129,56 +129,56 @@ MyWin::MyWin( Window* pParent, WinBits nWinStyle )
aOKBtn.Show();
}
-// -----------------------------------------------------------------------
+
void MyWin::MouseMove( const MouseEvent& rMEvt )
{
WorkWindow::MouseMove( rMEvt );
}
-// -----------------------------------------------------------------------
+
void MyWin::MouseButtonDown( const MouseEvent& rMEvt )
{
WorkWindow::MouseButtonDown( rMEvt );
}
-// -----------------------------------------------------------------------
+
void MyWin::MouseButtonUp( const MouseEvent& rMEvt )
{
WorkWindow::MouseButtonUp( rMEvt );
}
-// -----------------------------------------------------------------------
+
void MyWin::KeyInput( const KeyEvent& rKEvt )
{
WorkWindow::KeyInput( rKEvt );
}
-// -----------------------------------------------------------------------
+
void MyWin::KeyUp( const KeyEvent& rKEvt )
{
WorkWindow::KeyUp( rKEvt );
}
-// -----------------------------------------------------------------------
+
void MyWin::Paint( const Rectangle& rRect )
{
WorkWindow::Paint( rRect );
}
-// -----------------------------------------------------------------------
+
void MyWin::Resize()
{
WorkWindow::Resize();
}
-// -----------------------------------------------------------------------
+
IMPL_LINK( MyWin, Test, PushButton*, pBtn )
{