kf5/gtk3_kde5 fpickers: Drop unused 'allowRemoteUrls'

Change-Id: I591bf9fbe6e22bedda5a94334130a4f674cd66e6
Reviewed-on: https://gerrit.libreoffice.org/76110
Tested-by: Jenkins
Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
This commit is contained in:
Michael Weghorn 2019-07-22 12:52:09 +02:00
parent 04cdfa7aa0
commit adb3e60d3f
6 changed files with 0 additions and 10 deletions

View File

@ -842,8 +842,6 @@ vcl/unx/gtk/glomenu.cxx:20
GLOMenu parent_instance const GMenuModel
vcl/unx/kf5/KF5FilePicker.hxx:32
KF5FilePicker _layout class QGridLayout *
vcl/unx/kf5/KF5FilePicker.hxx:34
KF5FilePicker allowRemoteUrls _Bool
writerfilter/source/dmapper/PropertyMap.hxx:198
writerfilter::dmapper::SectionPropertyMap m_nDebugSectionNumber sal_Int32
xmloff/source/text/XMLTextListBlockContext.hxx:35

View File

@ -762,8 +762,6 @@ vcl/unx/gtk3/gtk3gtkinst.cxx:3532
CrippledViewport viewport GtkViewport
vcl/unx/gtk/a11y/atkhypertext.cxx:29
HyperLink atk_hyper_link const AtkHyperlink
vcl/unx/kf5/KF5FilePicker.hxx:34
KF5FilePicker allowRemoteUrls _Bool
writerfilter/source/ooxml/OOXMLStreamImpl.hxx:43
writerfilter::ooxml::OOXMLStreamImpl mxFastParser css::uno::Reference<css::xml::sax::XFastParser>
writerperfect/inc/WPFTEncodingDialog.hxx:37

View File

@ -42,7 +42,6 @@ KDE5FilePicker::KDE5FilePicker(QObject* parent)
, _extraControls(new QWidget)
, _layout(new QGridLayout(_extraControls))
, _winId(0)
, allowRemoteUrls(false)
{
_dialog->setSupportedSchemes({
QStringLiteral("file"), QStringLiteral("ftp"), QStringLiteral("http"),

View File

@ -55,8 +55,6 @@ protected:
sal_uIntPtr _winId;
bool allowRemoteUrls;
public:
explicit KDE5FilePicker(QObject* parent = nullptr);
~KDE5FilePicker() override;

View File

@ -54,7 +54,6 @@ KF5FilePicker::KF5FilePicker(css::uno::Reference<css::uno::XComponentContext> co
// Native kf5 filepicker does not add file extension automatically
: Qt5FilePicker(context, eMode, true, true)
, _layout(new QGridLayout(m_pExtraControls))
, allowRemoteUrls(false)
{
// use native dialog
m_pFileDialog->setOption(QFileDialog::DontUseNativeDialog, false);

View File

@ -31,8 +31,6 @@ protected:
//layout for extra custom controls
QGridLayout* _layout;
bool allowRemoteUrls;
public:
explicit KF5FilePicker(css::uno::Reference<css::uno::XComponentContext> const& context,
QFileDialog::FileMode);