Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
qgroundcontrol
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
c37a5cd8
Commit
c37a5cd8
authored
Jul 06, 2014
by
Bryant Mairs
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'my_qt5' of
https://github.com/mavlink/qgroundcontrol
into my_qt5
parents
d0af5b44
e7d2ab27
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
GAudioOutput.cc
src/GAudioOutput.cc
+1
-1
GAudioOutput.h
src/GAudioOutput.h
+2
-2
QGCUASFileManager.cc
src/uas/QGCUASFileManager.cc
+1
-1
No files found.
src/GAudioOutput.cc
View file @
c37a5cd8
...
...
@@ -221,7 +221,7 @@ bool GAudioOutput::say(QString text, int severity)
// Slashes necessary to have the right start to the sentence
// copying data prevents SpeakString from reading additional chars
text
=
"
\\
"
+
text
;
QStdWS
tring
str
=
text
.
toStdWString
();
std
::
ws
tring
str
=
text
.
toStdWString
();
unsigned
char
str2
[
1024
]
=
{};
memcpy
(
str2
,
text
.
toLatin1
().
data
(),
str
.
length
());
SpeakString
(
str2
);
...
...
src/GAudioOutput.h
View file @
c37a5cd8
...
...
@@ -36,8 +36,8 @@ This file is part of the PIXHAWK project
#include <QTimer>
#include <QStringList>
#ifdef Q_OS_MAC
#include <MediaObject>
#include <AudioOutput>
//
#include <MediaObject>
//
#include <AudioOutput>
#endif
#ifdef Q_OS_LINUX
//#include <phonon/MediaObject>
...
...
src/uas/QGCUASFileManager.cc
View file @
c37a5cd8
...
...
@@ -448,7 +448,7 @@ bool QGCUASFileManager::_sendOpcodeOnlyCmd(uint8_t opcode, OperationState newOpS
_sendRequest
(
&
request
);
return
TRUE
;
return
true
;
}
/// @brief Starts the ack timeout timer
...
...
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