Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
PIM
libkdepim
Commits
f34c9916
Commit
f34c9916
authored
Jul 28, 2020
by
Laurent Montel
😁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean up code
parent
4b9e781d
Pipeline
#28625
passed with stage
in 6 minutes and 24 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
10 deletions
+9
-10
src/libkdepim/multiplyingline/multiplyingline.cpp
src/libkdepim/multiplyingline/multiplyingline.cpp
+2
-1
src/libkdepim/widgets/kcheckcombobox.cpp
src/libkdepim/widgets/kcheckcombobox.cpp
+7
-9
No files found.
src/libkdepim/multiplyingline/multiplyingline.cpp
View file @
f34c9916
...
...
@@ -28,7 +28,8 @@
using
namespace
KPIM
;
MultiplyingLine
::
MultiplyingLine
(
QWidget
*
parent
)
:
QWidget
(
parent
)
MultiplyingLine
::
MultiplyingLine
(
QWidget
*
parent
)
:
QWidget
(
parent
)
{
}
...
...
src/libkdepim/widgets/kcheckcombobox.cpp
View file @
f34c9916
...
...
@@ -39,15 +39,11 @@ using namespace KPIM;
namespace
KPIM
{
class
Q_DECL_HIDDEN
KCheckComboBox
::
Private
{
KCheckComboBox
*
q
=
nullptr
;
public:
Private
(
KCheckComboBox
*
qq
)
:
q
(
qq
)
,
mSeparator
(
QLatin1Char
(
','
))
,
mSqueezeText
(
false
)
,
mIgnoreHide
(
false
)
,
mAlwaysShowDefaultText
(
false
)
:
mSeparator
(
QLatin1Char
(
','
))
,
q
(
qq
)
{
}
...
...
@@ -59,9 +55,11 @@ public:
public:
QString
mSeparator
;
QString
mDefaultText
;
bool
mSqueezeText
;
bool
mIgnoreHide
;
bool
mAlwaysShowDefaultText
;
bool
mSqueezeText
=
false
;
bool
mIgnoreHide
=
false
;
bool
mAlwaysShowDefaultText
=
false
;
private:
KCheckComboBox
*
const
q
;
};
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment