Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
PIM EventViews
Commits
722f8a7e
Commit
722f8a7e
authored
Jan 24, 2021
by
Laurent Montel
😁
Browse files
Make it compiles on BSD
parent
926fed97
Pipeline
#48551
canceled with stage
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/agenda/agenda.cpp
View file @
722f8a7e
...
...
@@ -2328,7 +2328,7 @@ QSize Agenda::sizeHint() const
if
(
d
->
mAllDayMode
)
{
return
QWidget
::
sizeHint
();
}
else
{
return
{
parentWidget
()
->
width
(),
d
->
mGridSpacingY
*
d
->
mRows
};
return
{
parentWidget
()
->
width
(),
static_cast
<
int
>
(
d
->
mGridSpacingY
*
d
->
mRows
)
};
}
}
...
...
Write
Preview
Supports
Markdown
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