summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-02-11 13:37:34 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-02-11 14:33:40 +0000
commit27ad211cd382a3800b1ed56ec7cb3bb9321582ce (patch)
tree8656171fe3cff6e9794b42f707037582f1f6e1ce /sc/source/ui/inc
parent91f509fda9a04670e0752a214188be87bce1f2ac (diff)
convert show changes dialog to .ui
Change-Id: I29397e454e30bff98644f0c9e0f3a8e00547af1b
Diffstat (limited to 'sc/source/ui/inc')
-rw-r--r--sc/source/ui/inc/highred.hrc46
-rw-r--r--sc/source/ui/inc/highred.hxx20
2 files changed, 7 insertions, 59 deletions
diff --git a/sc/source/ui/inc/highred.hrc b/sc/source/ui/inc/highred.hrc
deleted file mode 100644
index 0df9dd40df23..000000000000
--- a/sc/source/ui/inc/highred.hrc
+++ /dev/null
@@ -1,46 +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 .
- */
-
-#include "sc.hrc"
-
-#define BTN_OK 1
-#define BTN_CANCEL 2
-#define BTN_HELP 5
-
-#define CB_HIGHLIGHT_ACCEPT 6
-#define CB_HIGHLIGHT_REJECT 7
-
-#define FL_FILTER 10
-#define CB_HIGHLIGHT 13
-
-#define FT_ASSIGN 14
-#define ED_ASSIGN 15
-#define RB_ASSIGN 16
-
-#define STR_INSERT_COLS 20
-#define STR_INSERT_ROWS 21
-#define STR_INSERT_TABS 22
-#define STR_DELETE_COLS 23
-#define STR_DELETE_ROWS 24
-#define STR_DELETE_TABS 25
-#define STR_MOVE 26
-#define STR_CONTENT 27
-#define STR_REJECT 28
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/source/ui/inc/highred.hxx b/sc/source/ui/inc/highred.hxx
index 61d9a8c61ed4..6370ebaa0074 100644
--- a/sc/source/ui/inc/highred.hxx
+++ b/sc/source/ui/inc/highred.hxx
@@ -53,25 +53,19 @@ class ScDocument;
class ScHighlightChgDlg : public ScAnyRefDlg
{
private:
+ CheckBox* m_pHighlightBox;
+ SvxTPFilter* m_pFilterCtr;
+ CheckBox* m_pCbAccept;
+ CheckBox* m_pCbReject;
+ OKButton* m_pOkButton;
- CheckBox aHighlightBox;
- FixedLine aFlFilter;
- SvxTPFilter aFilterCtr;
- CheckBox aCbAccept;
- CheckBox aCbReject;
-
- OKButton aOkButton;
- CancelButton aCancelButton;
- HelpButton aHelpButton;
-
- formula::RefEdit aEdAssign;
- formula::RefButton aRbAssign;
+ formula::RefEdit* m_pEdAssign;
+ formula::RefButton* m_pRbAssign;
ScViewData* pViewData;
ScDocument* pDoc;
ScRangeName aLocalRangeName;
Selection theCurSel;
- Size MinSize;
ScRangeList aRangeList;
ScChangeViewSettings aChangeViewSet;