bump product version to 4.2.0.1
[LibreOffice.git] / include / sfx2 / checkin.hxx
blobb5b87b0c9f318aab9e47630306be4b44179a851a
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
9 #ifndef INCLUDED_SFX2_CHECKIN_HXX
10 #define INCLUDED_SFX2_CHECKIN_HXX
12 #include <vcl/button.hxx>
13 #include <vcl/dialog.hxx>
14 #include <vcl/edit.hxx>
16 class SfxCheckinDialog : public ModalDialog
18 private:
19 Edit* m_pCommentED;
20 CheckBox* m_pMajorCB;
22 OKButton* m_pOKBtn;
24 DECL_DLLPRIVATE_LINK(OKHdl, void *);
26 public:
27 SfxCheckinDialog( Window* pParent );
29 OUString GetComment( );
30 bool IsMajor( );
33 #endif
35 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */