diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-01-20 03:07:16 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-01-20 11:01:11 +0000 |
commit | 7b3862a5122d404845cc7dc227badb1cdfc92ac2 (patch) | |
tree | 02975cd7ce23feed35ec5266e58051efe90a60ee | |
parent | d7728bb63086a73594fb59d6b0d55cf4975f0fc1 (diff) |
splitcelldlg.hxx moved into cui long ago, this copy should be removed
Change-Id: Id019b80e12eaaed1d181af2eb2599cc1db26ee25
-rw-r--r-- | svx/Package_inc.mk | 1 | ||||
-rw-r--r-- | svx/inc/svx/splitcelldlg.hxx | 55 |
2 files changed, 0 insertions, 56 deletions
diff --git a/svx/Package_inc.mk b/svx/Package_inc.mk index 3eac0948f077..e1deeab9ecd4 100644 --- a/svx/Package_inc.mk +++ b/svx/Package_inc.mk @@ -136,7 +136,6 @@ $(eval $(call gb_Package_add_file,svx_inc,inc/svx/unoshtxt.hxx,svx/unoshtxt.hxx) $(eval $(call gb_Package_add_file,svx_inc,inc/svx/svdopage.hxx,svx/svdopage.hxx)) $(eval $(call gb_Package_add_file,svx_inc,inc/svx/xftadit.hxx,svx/xftadit.hxx)) $(eval $(call gb_Package_add_file,svx_inc,inc/svx/xlnstcit.hxx,svx/xlnstcit.hxx)) -$(eval $(call gb_Package_add_file,svx_inc,inc/svx/splitcelldlg.hxx,svx/splitcelldlg.hxx)) $(eval $(call gb_Package_add_file,svx_inc,inc/svx/sdynitm.hxx,svx/sdynitm.hxx)) $(eval $(call gb_Package_add_file,svx_inc,inc/svx/rulritem.hxx,svx/rulritem.hxx)) $(eval $(call gb_Package_add_file,svx_inc,inc/svx/fillctrl.hxx,svx/fillctrl.hxx)) diff --git a/svx/inc/svx/splitcelldlg.hxx b/svx/inc/svx/splitcelldlg.hxx deleted file mode 100644 index 39a124db8266..000000000000 --- a/svx/inc/svx/splitcelldlg.hxx +++ /dev/null @@ -1,55 +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 _SVX_SPLITCELLDLG_HXX -#define _SVX_SPLITCELLDLG_HXX - -#include <vcl/fixed.hxx> -#include <vcl/field.hxx> -#include <vcl/button.hxx> - -#include <svx/stddlg.hxx> - -class SvxSplitTableDlg : public SvxStandardDialog -{ - FixedText maCountLbl; - NumericField maCountEdit; - FixedLine maCountFL; - ImageRadioButton maHorzBox; - ImageRadioButton maVertBox; - CheckBox maPropCB; - FixedLine maDirFL; - OKButton maOKBtn; - CancelButton maCancelBtn; - HelpButton maHelpBtn; - -protected: - virtual void Apply(); - -public: - SvxSplitTableDlg(Window *pParent ); - DECL_LINK( ClickHdl, Button * ); - - bool IsHorizontal() const; - bool IsProportional() const; - long GetCount() const; -}; - -#endif - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |