summaryrefslogtreecommitdiff
path: root/sd/source/ui/inc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-11-14 10:40:16 +0000
committerCaolán McNamara <caolanm@redhat.com>2013-11-14 11:05:38 +0000
commitf13a47fa04db2e8c653df8adf8249a89ca06b291 (patch)
tree8efefb4b06478b6b7afe185c941ad066dba4935b /sd/source/ui/inc
parent8820448bfebc362b31e673a5b7d01a8dc9144eca (diff)
convert insert slides dialog to .ui
Change-Id: I9dc8366d2e8bd2ab16ce11c9e69cbdbdca0ccae5
Diffstat (limited to 'sd/source/ui/inc')
-rw-r--r--sd/source/ui/inc/inspagob.hrc27
-rw-r--r--sd/source/ui/inc/inspagob.hxx9
-rw-r--r--sd/source/ui/inc/sdtreelb.hxx3
3 files changed, 5 insertions, 34 deletions
diff --git a/sd/source/ui/inc/inspagob.hrc b/sd/source/ui/inc/inspagob.hrc
deleted file mode 100644
index 4248b25282cc..000000000000
--- a/sd/source/ui/inc/inspagob.hrc
+++ /dev/null
@@ -1,27 +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 .
- */
-#define DLG_INSERT_PAGES_OBJS 938
-#define BTN_OK 1
-#define BTN_CANCEL 1
-#define BTN_HELP 1
-#define LB_TREE 1
-#define CBX_LINK 1
-#define CBX_CHECK_MASTERS 2
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sd/source/ui/inc/inspagob.hxx b/sd/source/ui/inc/inspagob.hxx
index a0d2da4ad745..ae2f68aa770e 100644
--- a/sd/source/ui/inc/inspagob.hxx
+++ b/sd/source/ui/inc/inspagob.hxx
@@ -31,12 +31,9 @@ class SdDrawDocument;
class SdInsertPagesObjsDlg : public ModalDialog
{
private:
- SdPageObjsTLB aLbTree;
- CheckBox aCbxLink;
- CheckBox aCbxMasters;
- OKButton aBtnOk;
- CancelButton aBtnCancel;
- HelpButton aBtnHelp;
+ SdPageObjsTLB* m_pLbTree;
+ CheckBox* m_pCbxLink;
+ CheckBox* m_pCbxMasters;
SfxMedium* pMedium;
const SdDrawDocument* mpDoc;
diff --git a/sd/source/ui/inc/sdtreelb.hxx b/sd/source/ui/inc/sdtreelb.hxx
index f78d5becb34a..252a40384144 100644
--- a/sd/source/ui/inc/sdtreelb.hxx
+++ b/sd/source/ui/inc/sdtreelb.hxx
@@ -179,7 +179,8 @@ protected:
public:
- SdPageObjsTLB( Window* pParent, const SdResId& rSdResId );
+ SdPageObjsTLB( Window* pParent, const SdResId& rSdResId );
+ SdPageObjsTLB( Window* pParent, WinBits nStyle );
~SdPageObjsTLB();
virtual void SelectHdl();