Files
libreoffice/sc/source/ui/inc/AnalysisOfVarianceDialog.hxx
Tomaž Vajngerl 462799e614 just rename header define
Change-Id: I90053c4d99d47939f35b084b4d2995bebd5e8d63
2013-07-23 20:52:45 +02:00

45 lines
1.0 KiB
C++

/* -*- 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/.
*
*/
#ifndef ANALYSIS_OF_VARIANCE_DIALOG_HXX
#define ANALYSIS_OF_VARIANCE_DIALOG_HXX
#include "global.hxx"
#include "address.hxx"
#include "anyrefdg.hxx"
#include <vcl/fixed.hxx>
#include <vcl/group.hxx>
#include <vcl/lstbox.hxx>
#include "StatisticsInputOutputDialog.hxx"
class ScAnalysisOfVarianceDialog : public ScStatisticsInputOutputDialog
{
public:
ScAnalysisOfVarianceDialog(
SfxBindings* pB, SfxChildWindow* pCW,
Window* pParent, ScViewData* pViewData );
virtual ~ScAnalysisOfVarianceDialog();
virtual sal_Bool Close();
NumericField* mpAlpha;
protected:
virtual void CalculateInputAndWriteToOutput();
};
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */