summaryrefslogtreecommitdiff
path: root/svtools/inc
diff options
context:
space:
mode:
authorAndras Timar <atimar@suse.com>2013-03-29 07:29:34 -0700
committerAndras Timar <atimar@suse.com>2013-03-29 07:33:37 -0700
commitf7f9b74163acd6811ccfaabb2a1d762225258e15 (patch)
tree85eca0dcce0520c73d70986edb02fcbe573e29fa /svtools/inc
parent37303d227d9b48ef6030388b1e70a8c8b8359367 (diff)
replace PathDialog to xFolderPicker, remmove obsoleted PathDialog class
and at the same time we got rid of tools/fsys.hxx dependency in svtools Change-Id: I5237529681a8b6ec32f41086af41ac575fbcff9b
Diffstat (limited to 'svtools/inc')
-rw-r--r--svtools/inc/svtools/filedlg.hxx57
1 files changed, 0 insertions, 57 deletions
diff --git a/svtools/inc/svtools/filedlg.hxx b/svtools/inc/svtools/filedlg.hxx
deleted file mode 100644
index 9beb0a383b69..000000000000
--- a/svtools/inc/svtools/filedlg.hxx
+++ /dev/null
@@ -1,57 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-
-#ifndef SVT_FILEDLG_HXX
-#define SVT_FILEDLG_HXX
-
-#include "svtools/svtdllapi.h"
-
-#include <vcl/dialog.hxx>
-
-class Edit;
-class ImpSvFileDlg;
-
-// --------------
-// - SvPathDialog -
-// --------------
-
-class SVT_DLLPUBLIC PathDialog : public ModalDialog
-{
-private:
- ImpSvFileDlg* pImpFileDlg; // Implementation
- Link aOKHdlLink; // Link to OK-Handler
-
-public:
- PathDialog( Window* pParent, WinBits nWinStyle = 0, sal_Bool bCreateDir = sal_True );
- ~PathDialog();
-
- virtual long OK();
-
- void SetPath( const rtl::OUString& rNewPath );
- rtl::OUString GetPath() const;
-
- void SetOKHdl( const Link& rLink ) { aOKHdlLink = rLink; }
- const Link& GetOKHdl() const { return aOKHdlLink; }
-
- virtual short Execute();
-};
-
-#endif // FILEDLG_HXX
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */