summaryrefslogtreecommitdiff
path: root/sfx2/source/inc
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2008-11-19 17:43:08 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2008-11-19 17:43:08 +0000
commitc41efc6d0b2740be4243fd696385f8dbcec0aefe (patch)
tree2caf4d37a6cfe59a14f2ac565aca279c8cdb981c /sfx2/source/inc
parenta29935a32d0daddde35a60c853f7606b61c86262 (diff)
CWS-TOOLING: integrate CWS dba301a_DEV300
Diffstat (limited to 'sfx2/source/inc')
-rw-r--r--sfx2/source/inc/helpid.hrc1
-rw-r--r--sfx2/source/inc/newerverwarn.hxx62
2 files changed, 0 insertions, 63 deletions
diff --git a/sfx2/source/inc/helpid.hrc b/sfx2/source/inc/helpid.hrc
index ffaf6b776799..5f66e119f3a6 100644
--- a/sfx2/source/inc/helpid.hrc
+++ b/sfx2/source/inc/helpid.hrc
@@ -359,7 +359,6 @@
#define HID_WARNING_ALIENFORMAT (HID_SFX_START + 320)
#define HID_HELP_ONSTARTUP_BOX (HID_SFX_START + 321)
#define HID_DLG_CHECKFORONLINEUPDATE (HID_SFX_START + 322)
-#define HID_DLG_NEWERVERSIONWARNING (HID_SFX_START + 323)
#define HID_TP_CUSTOMPROPERTIES (HID_SFX_START + 324)
#define HID_CTRL_CUSTOMPROPERTIES (HID_SFX_START + 325)
#define HID_CTRL_CUSTOMPROPS_YES_NO (HID_SFX_START + 326)
diff --git a/sfx2/source/inc/newerverwarn.hxx b/sfx2/source/inc/newerverwarn.hxx
deleted file mode 100644
index 2a2a512b299a..000000000000
--- a/sfx2/source/inc/newerverwarn.hxx
+++ /dev/null
@@ -1,62 +0,0 @@
-/*************************************************************************
- *
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * Copyright 2008 by Sun Microsystems, Inc.
- *
- * OpenOffice.org - a multi-platform office productivity suite
- *
- * $RCSfile: newerverwarn.hxx,v $
- * $Revision: 1.4 $
- *
- * 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 _SFX2_NEWERVERSIONWARNING_HXX
-#define _SFX2_NEWERVERSIONWARNING_HXX
-
-#include <vcl/button.hxx>
-#include <vcl/fixed.hxx>
-#include <sfx2/basedlgs.hxx>
-
-namespace sfx2
-{
- class NewerVersionWarningDialog : public SfxModalDialog
- {
- private:
- FixedImage m_aImage;
- FixedText m_aInfoText;
- FixedLine m_aButtonLine;
- PushButton m_aUpdateBtn;
- CancelButton m_aLaterBtn;
-
- ::rtl::OUString m_sVersion;
-
- DECL_LINK( UpdateHdl, PushButton* );
- DECL_LINK( LaterHdl, CancelButton* );
-
- void InitButtonWidth();
-
- public:
- NewerVersionWarningDialog( Window* pParent, const ::rtl::OUString& rVersion );
- ~NewerVersionWarningDialog();
- };
-} // namespace sfx2
-
-#endif // #ifndef _SFX2_NEWERVERSIONWARNING_HXX
-