summaryrefslogtreecommitdiff
path: root/vcl/unx/gtk3_kde5
diff options
context:
space:
mode:
authorEda Nur Var <var.eda.nur@gmail.com>2020-01-27 01:49:02 +0300
committerThorsten Behrens <Thorsten.Behrens@CIB.de>2020-02-03 09:55:17 +0100
commitb16faa4dcd87b9c7203b230a9feaebbb05c5a9cb (patch)
treebc0d6fc6e35b6143fc8b2bdc2537f86707c1aa63 /vcl/unx/gtk3_kde5
parent3919fc5a5eb24272cc4ccb18fb8d5080089c814d (diff)
tdf#75280 Convert inappropriate use of sal_uIntPtr to better integer types
Since KDE is a desktop environment, I have infered that the class which the _winId variable belongs to makes user interaction, such as file picking from a window, possible. I have checked related functions and seen that winId is the id number of windows on the screen and the window whose Id is defined as 0 is avaliable to user interaction. Hence _winId could be an integer type instead of a pointer. Change-Id: I98897e55342630e3a0e8b98fc081e14541621ae2 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87469 Reviewed-by: Milian Wolff <milian.wolff@kdab.com> Tested-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
Diffstat (limited to 'vcl/unx/gtk3_kde5')
-rw-r--r--vcl/unx/gtk3_kde5/kde5_filepicker.cxx2
-rw-r--r--vcl/unx/gtk3_kde5/kde5_filepicker.hxx4
2 files changed, 3 insertions, 3 deletions
diff --git a/vcl/unx/gtk3_kde5/kde5_filepicker.cxx b/vcl/unx/gtk3_kde5/kde5_filepicker.cxx
index 27043053c3da..65953e4f2763 100644
--- a/vcl/unx/gtk3_kde5/kde5_filepicker.cxx
+++ b/vcl/unx/gtk3_kde5/kde5_filepicker.cxx
@@ -237,7 +237,7 @@ void KDE5FilePicker::initialize(bool saveDialog)
}
}
-void KDE5FilePicker::setWinId(sal_uIntPtr winId) { _winId = winId; }
+void KDE5FilePicker::setWinId(sal_uInt64 winId) { _winId = winId; }
void KDE5FilePicker::setupCustomWidgets()
{
diff --git a/vcl/unx/gtk3_kde5/kde5_filepicker.hxx b/vcl/unx/gtk3_kde5/kde5_filepicker.hxx
index 0442c333ab05..74f94d222115 100644
--- a/vcl/unx/gtk3_kde5/kde5_filepicker.hxx
+++ b/vcl/unx/gtk3_kde5/kde5_filepicker.hxx
@@ -53,7 +53,7 @@ protected:
//layout for extra custom controls
QGridLayout* _layout;
- sal_uIntPtr _winId;
+ sal_uInt64 _winId;
public:
explicit KDE5FilePicker(QObject* parent = nullptr);
@@ -92,7 +92,7 @@ public:
//add a custom control widget to the file dialog
void addCheckBox(sal_Int16 nControlId, const QString& label, bool hidden);
- void setWinId(sal_uIntPtr winId);
+ void setWinId(sal_uInt64 winId);
private:
Q_DISABLE_COPY(KDE5FilePicker)