summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-07-22 22:39:26 +0200
committerThomas Arnhold <thomas@arnhold.org>2011-07-25 15:12:21 +0200
commit6e33eee41ddfa8c3bace8886ca6b7ab1529f9964 (patch)
treef24901f3a99014dddd2c980e7aec804cfd522412 /sfx2
parentb42bed0fa29712dfe669e400edcb6f01379b1f35 (diff)
callcatcher: remove unused methods
Diffstat (limited to 'sfx2')
-rwxr-xr-xsfx2/Library_sfx.mk1
-rw-r--r--sfx2/source/appl/appinit.cxx1
-rw-r--r--sfx2/source/appl/appmain.cxx1
-rw-r--r--sfx2/source/appl/appmisc.cxx1
-rw-r--r--sfx2/source/dialog/intro.cxx109
-rw-r--r--sfx2/source/inc/intro.hxx57
6 files changed, 0 insertions, 170 deletions
diff --git a/sfx2/Library_sfx.mk b/sfx2/Library_sfx.mk
index 4af5501016ee..e002feafe0f3 100755
--- a/sfx2/Library_sfx.mk
+++ b/sfx2/Library_sfx.mk
@@ -158,7 +158,6 @@ $(eval $(call gb_Library_add_exception_objects,sfx,\
sfx2/source/dialog/dockwin \
sfx2/source/dialog/filedlghelper \
sfx2/source/dialog/filtergrouping \
- sfx2/source/dialog/intro \
sfx2/source/dialog/itemconnect \
sfx2/source/dialog/mailmodel \
sfx2/source/dialog/mgetempl \
diff --git a/sfx2/source/appl/appinit.cxx b/sfx2/source/appl/appinit.cxx
index 4f4f3a1ebe6a..cafe3ef36ea8 100644
--- a/sfx2/source/appl/appinit.cxx
+++ b/sfx2/source/appl/appinit.cxx
@@ -68,7 +68,6 @@
#include <sfx2/dispatch.hxx>
#include <sfx2/docfac.hxx>
#include <sfx2/evntconf.hxx>
-#include "intro.hxx"
#include <sfx2/mnumgr.hxx>
#include <sfx2/msgpool.hxx>
#include <sfx2/progress.hxx>
diff --git a/sfx2/source/appl/appmain.cxx b/sfx2/source/appl/appmain.cxx
index 00ec4e88ecdd..54c07bd42822 100644
--- a/sfx2/source/appl/appmain.cxx
+++ b/sfx2/source/appl/appmain.cxx
@@ -54,7 +54,6 @@
#include "sfx2/sfxresid.hxx"
#include <sfx2/fcontnr.hxx>
#include <sfx2/viewsh.hxx>
-#include "intro.hxx"
#include <sfx2/msgpool.hxx>
#include <sfx2/mnumgr.hxx>
#include <sfx2/appuno.hxx>
diff --git a/sfx2/source/appl/appmisc.cxx b/sfx2/source/appl/appmisc.cxx
index eb0a10016d33..767e514dcba3 100644
--- a/sfx2/source/appl/appmisc.cxx
+++ b/sfx2/source/appl/appmisc.cxx
@@ -71,7 +71,6 @@
#include <sfx2/bindings.hxx>
#include <sfx2/dispatch.hxx>
#include "workwin.hxx"
-#include "intro.hxx"
#include <sfx2/fcontnr.hxx>
#include "sfxlocal.hrc"
#include <sfx2/sfx.hrc>
diff --git a/sfx2/source/dialog/intro.cxx b/sfx2/source/dialog/intro.cxx
deleted file mode 100644
index 8bfed93e4cba..000000000000
--- a/sfx2/source/dialog/intro.cxx
+++ /dev/null
@@ -1,109 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*************************************************************************
- *
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * Copyright 2000, 2010 Oracle and/or its affiliates.
- *
- * OpenOffice.org - a multi-platform office productivity suite
- *
- * This file is part of OpenOffice.org.
- *
- * OpenOffice.org is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License version 3
- * only, as published by the Free Software Foundation.
- *
- * OpenOffice.org is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License version 3 for more details
- * (a copy is included in the LICENSE file that accompanied this code).
- *
- * You should have received a copy of the GNU Lesser General Public License
- * version 3 along with OpenOffice.org. If not, see
- * <http://www.openoffice.org/license.html>
- * for a copy of the LGPLv3 License.
- *
- ************************************************************************/
-
-// MARKER(update_precomp.py): autogen include statement, do not remove
-#include "precompiled_sfx2.hxx"
-
-#include "intro.hxx"
-
-#include <tools/stream.hxx>
-#include <tools/urlobj.hxx>
-#include <unotools/pathoptions.hxx>
-#include <unotools/configmgr.hxx>
-#include <com/sun/star/uno/Any.h>
-
-#include <sfx2/sfxuno.hxx>
-
-// -----------------------------------------------------------------------
-
-void IntroWindow_Impl::Init()
-{
- Size aSize = aIntroBmp.GetSizePixel();
- SetOutputSizePixel( aSize );
- Size aScreenSize( GetDesktopRectPixel().GetSize() );
- Size aWinSize( GetSizePixel() );
- Point aWinPos( ( aScreenSize.Width() - aWinSize.Width() ) / 2,
- ( aScreenSize.Height() - aWinSize.Height() ) / 2 );
- SetPosPixel( aWinPos );
-
- if ( GetColorCount() >= 16 )
- {
- Show();
- Update();
- }
-}
-
-// -----------------------------------------------------------------------
-
-IntroWindow_Impl::IntroWindow_Impl( const Bitmap& rBmp ) :
-
- WorkWindow( NULL, (WinBits)0 ),
-
- aIntroBmp( rBmp )
-
-{
- Hide();
-
- // load bitmap depends on productname ("StarOffice", "StarSuite",...)
- ::com::sun::star::uno::Any aRet = ::utl::ConfigManager::GetDirectConfigProperty( ::utl::ConfigManager::PRODUCTNAME );
- rtl::OUString aTmp;
- aRet >>= aTmp;
- String aBmpFileName = aTmp;
- aBmpFileName += String( DEFINE_CONST_UNICODE("_intro.bmp") );
- INetURLObject aObj( SvtPathOptions().GetModulePath(), INET_PROT_FILE );
- aObj.insertName( aBmpFileName );
- SvFileStream aStrm( aObj.PathToFileName(), STREAM_STD_READ );
- if ( !aStrm.GetError() )
- aStrm >> aIntroBmp;
-
- Init();
-}
-
-// -----------------------------------------------------------------------
-
-IntroWindow_Impl::~IntroWindow_Impl()
-{
- Hide();
-}
-
-// -----------------------------------------------------------------------
-
-void IntroWindow_Impl::Paint( const Rectangle& )
-{
- DrawBitmap( Point(), aIntroBmp );
- Flush();
-}
-
-// -----------------------------------------------------------------------
-
-void IntroWindow_Impl::Slide()
-{
-}
-
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sfx2/source/inc/intro.hxx b/sfx2/source/inc/intro.hxx
deleted file mode 100644
index 8eb741bc7a97..000000000000
--- a/sfx2/source/inc/intro.hxx
+++ /dev/null
@@ -1,57 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*************************************************************************
- *
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * Copyright 2000, 2010 Oracle and/or its affiliates.
- *
- * OpenOffice.org - a multi-platform office productivity suite
- *
- * This file is part of OpenOffice.org.
- *
- * OpenOffice.org is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License version 3
- * only, as published by the Free Software Foundation.
- *
- * OpenOffice.org is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License version 3 for more details
- * (a copy is included in the LICENSE file that accompanied this code).
- *
- * You should have received a copy of the GNU Lesser General Public License
- * version 3 along with OpenOffice.org. If not, see
- * <http://www.openoffice.org/license.html>
- * for a copy of the LGPLv3 License.
- *
- ************************************************************************/
-#ifndef _SFX_INTRO_HXX
-#define _SFX_INTRO_HXX
-
-// include ---------------------------------------------------------------
-
-#include <vcl/wrkwin.hxx>
-#include <vcl/bitmap.hxx>
-
-// class IntroWindow_Impl ------------------------------------------------
-
-class IntroWindow_Impl : public WorkWindow
-{
-private:
- Bitmap aIntroBmp;
-
- void Init();
-
-public:
- IntroWindow_Impl( const Bitmap& rBmp );
- ~IntroWindow_Impl();
-
- virtual void Paint( const Rectangle& );
-
- void Slide();
-};
-
-#endif // #ifndef _SFX_INTRO_HXX
-
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */