Kaydet (Commit) 7d5bda0a authored tarafından Katarina Behrens's avatar Katarina Behrens Kaydeden (comit) Thorsten Behrens

screenshots: add missing cppunit files

Change-Id: I9fd716671c7d1dc568d14b914c9a802fc6239a5e
üst ed43afc3
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
#*************************************************************************
#
# 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/.
#
#*************************************************************************
$(eval $(call gb_CppunitTest_CppunitTest,sd_dialogs_test))
$(eval $(call gb_CppunitTest_add_exception_objects,sd_dialogs_test, \
sd/qa/unit/dialogs-test \
))
$(eval $(call gb_CppunitTest_use_sdk_api,sd_dialogs_test))
$(eval $(call gb_CppunitTest_set_include,sd_dialogs_test,\
-I$(SRCDIR)/sd/source/ui/inc \
-I$(SRCDIR)/sd/inc \
$$(INCLUDE) \
))
$(eval $(call gb_CppunitTest_use_libraries,sd_dialogs_test, \
basegfx \
comphelper \
cppu \
cppuhelper \
drawinglayer \
editeng \
i18nlangtag \
i18nutil \
msfilter \
oox \
sal \
salhelper \
sax \
sd \
sdui \
sfx \
sot \
svl \
svt \
svx \
svxcore \
test \
tl \
tk \
ucbhelper \
unotest \
utl \
vcl \
xo \
$(gb_UWINAPI) \
))
$(eval $(call gb_CppunitTest_use_external,sd_dialogs_test,boost_headers))
$(eval $(call gb_CppunitTest_use_sdk_api,sd_dialogs_test))
$(eval $(call gb_CppunitTest_use_ure,sd_dialogs_test))
$(eval $(call gb_CppunitTest_use_vcl_non_headless,sd_dialogs_test))
$(eval $(call gb_CppunitTest_use_rdb,sd_dialogs_test,services))
# $(eval $(call gb_CppunitTest_use_configuration,sd_dialogs_test))
$(eval $(call gb_CppunitTest_use_instdir_configuration,sd_dialogs_test))
# vim: set noet sw=4 ts=4:
This diff is collapsed.
...@@ -1336,7 +1336,7 @@ std::vector<OString> SfxTabDialog::getAllPageUIXMLDescriptions() const ...@@ -1336,7 +1336,7 @@ std::vector<OString> SfxTabDialog::getAllPageUIXMLDescriptions() const
{ {
std::vector<OString> aRetval; std::vector<OString> aRetval;
for (SfxTabDlgData_Impl::const_iterator it = pImpl->aData.begin(); it != pImpl->aData.end(); ++it) for (SfxTabDlgData_Impl::const_iterator it = m_pImpl->aData.begin(); it != m_pImpl->aData.end(); ++it)
{ {
SfxTabPage* pCandidate = GetTabPage((*it)->nId); SfxTabPage* pCandidate = GetTabPage((*it)->nId);
...@@ -1359,7 +1359,7 @@ std::vector<OString> SfxTabDialog::getAllPageUIXMLDescriptions() const ...@@ -1359,7 +1359,7 @@ std::vector<OString> SfxTabDialog::getAllPageUIXMLDescriptions() const
bool SfxTabDialog::selectPageByUIXMLDescription(const OString& rUIXMLDescription) bool SfxTabDialog::selectPageByUIXMLDescription(const OString& rUIXMLDescription)
{ {
for (SfxTabDlgData_Impl::const_iterator it = pImpl->aData.begin(); it != pImpl->aData.end(); ++it) for (SfxTabDlgData_Impl::const_iterator it = m_pImpl->aData.begin(); it != m_pImpl->aData.end(); ++it)
{ {
SfxTabPage* pCandidate = (*it)->pTabPage; SfxTabPage* pCandidate = (*it)->pTabPage;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment