summaryrefslogtreecommitdiff
path: root/svtools/inc
diff options
context:
space:
mode:
authorAugust Sodora <augsod@gmail.com>2011-12-21 06:49:39 -0500
committerAugust Sodora <augsod@gmail.com>2011-12-21 07:00:43 -0500
commiteeecf625351238f90c61c82b403bd65e35d7833e (patch)
tree84c106f8befa3ef090ebbb2f5c4509f7db2765b7 /svtools/inc
parent3b8bf60a040d51d2d228127693f0b9c3292b151d (diff)
Remove TTProperties
Diffstat (limited to 'svtools/inc')
-rw-r--r--svtools/inc/svtools/helpid.hrc6
-rw-r--r--svtools/inc/svtools/testtool.hxx78
2 files changed, 0 insertions, 84 deletions
diff --git a/svtools/inc/svtools/helpid.hrc b/svtools/inc/svtools/helpid.hrc
index ecf8ba4b1bf7..530b3694022b 100644
--- a/svtools/inc/svtools/helpid.hrc
+++ b/svtools/inc/svtools/helpid.hrc
@@ -115,12 +115,6 @@
#define HID_FILEOPEN_VERSION "SVT_HID_FILEOPEN_VERSION"
#define HID_FILEOPEN_IMAGE_TEMPLATE "SVT_HID_FILEOPEN_IMAGE_TEMPLATE"
-// uniqueid for the helpagent window (testtool)
-#define HID_HELPAGENT_WINDOW "SVT_HID_HELPAGENT_WINDOW"
-
-// registration dialog
-#define HID_REGISTRATION_DIALOG "SVT_HID_REGISTRATION_DIALOG"
-
#define HID_PRINTDIALOG_TOFILE "SVT_HID_PRINTDIALOG_TOFILE"
#define HID_WIZARD_NEXT "SVT_HID_WIZARD_NEXT"
diff --git a/svtools/inc/svtools/testtool.hxx b/svtools/inc/svtools/testtool.hxx
deleted file mode 100644
index 0129a326f001..000000000000
--- a/svtools/inc/svtools/testtool.hxx
+++ /dev/null
@@ -1,78 +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 SVTOOLS_TESTTOOL_HXX
-#define SVTOOLS_TESTTOOL_HXX
-
-#include <tools/solar.h>
-#include <tools/link.hxx>
-#include <tools/string.hxx>
-
-class Application;
-class SvStream;
-
-class StatementFlow;
-class CommunicationManager;
-class CommunicationLink;
-#if OSL_DEBUG_LEVEL > 1
-class EditWindow;
-#endif
-class ImplRC;
-
-class RemoteControl
-{
- friend class StatementFlow;
-
- sal_Bool m_bIdleInserted;
-#if OSL_DEBUG_LEVEL > 1
- EditWindow *m_pDbgWin;
-#endif
- ImplRC* pImplRC;
-
-public:
- RemoteControl();
- ~RemoteControl();
- sal_Bool QueCommands( sal_uLong nServiceId, SvStream *pIn );
- SvStream* GetReturnStream();
-
- DECL_LINK( IdleHdl, Application* );
- DECL_LINK( CommandHdl, Application* );
-
- DECL_LINK( QueCommandsEvent, CommunicationLink* );
- sal_uLong nStoredServiceId;
- SvStream *pStoredStream;
-
- void ExecuteURL( String &aURL );
-
-protected:
- CommunicationManager *pServiceMgr;
- SvStream *pRetStream;
-};
-
-#endif // SVTOOLS_TESTTOOL_HXX
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */