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 / Register
Toggle navigation
Open sidebar
Datovka projects
mobile Datovka
Commits
f05b265f
Commit
f05b265f
authored
Oct 23, 2017
by
Karel Slaný
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added some declaration to be able to compile the sources with gcc 5.4.0.
parent
cff3da9a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
0 deletions
+20
-0
src/qml_interaction/attachment_data.h
src/qml_interaction/attachment_data.h
+10
-0
src/qml_interaction/message_envelope.h
src/qml_interaction/message_envelope.h
+10
-0
No files found.
src/qml_interaction/attachment_data.h
View file @
f05b265f
...
...
@@ -75,6 +75,16 @@ public:
const
QString
&
_dmFileSize
,
const
QString
&
_dmDownloadDate
,
const
QString
&
_icon
,
QObject
*
parent
=
Q_NULLPTR
);
/*!
* @brief Assignment operator.
*
* @note gcc 5.4 bitches about missing operator= declaration.
*
* @param[in] data Attachment data.
* @return Reference to itself.
*/
AttachmentData
&
operator
=
(
const
AttachmentData
&
data
);
int
fileId
(
void
)
const
;
void
setFileId
(
int
fileId
);
qint64
dmId
(
void
)
const
;
...
...
src/qml_interaction/message_envelope.h
View file @
f05b265f
...
...
@@ -143,6 +143,16 @@ public:
bool
_dmReadLocally
,
QObject
*
parent
=
Q_NULLPTR
);
/*!
* @brief Assignment operator.
*
* @note gcc 5.4 bitches about missing operator= declaration.
*
* @param[in] envel Message envelope.
* @return Reference to itself.
*/
MsgEnvelope
&
operator
=
(
const
MsgEnvelope
&
envel
);
qint64
dmID
(
void
)
const
;
void
setDmID
(
qint64
dmID
);
QString
dmAnnotation
(
void
)
const
;
...
...
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