2012-09-26 17:53:12 -04:00
|
|
|
/* -*- 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/.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "xmlsourcedlg.hxx"
|
|
|
|
#include "xmlsourcedlg.hrc"
|
|
|
|
|
2012-09-26 21:12:11 -04:00
|
|
|
#include "scresid.hxx"
|
|
|
|
|
2012-09-26 20:13:42 -04:00
|
|
|
ScXMLSourceDlg::ScXMLSourceDlg(Window* pParent) :
|
2012-09-26 21:12:11 -04:00
|
|
|
ModalDialog(pParent, ScResId(RID_SCDLG_XML_SOURCE))
|
2012-09-26 20:13:42 -04:00
|
|
|
{
|
2012-09-26 21:12:11 -04:00
|
|
|
FreeResource();
|
2012-09-26 20:13:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
ScXMLSourceDlg::~ScXMLSourceDlg()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-09-26 17:53:12 -04:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|