Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
61ad6017
Commit
61ad6017
authored
Jul 27, 2014
by
Lorenz Meier
Browse files
Merge pull request #775 from Susurrus/various_Fixes
Various fixes
parents
bad7ab31
2343a697
Changes
4
Hide whitespace changes
Inline
Side-by-side
QGCExternalLibs.pri
View file @
61ad6017
#
# [REQUIRED] Tell the Linux build to look in a few additional places for libs
#
LinuxBuild {
INCLUDEPATH += \
/usr/include \
/usr/local/include
LIBS += \
-L/usr/lib
linux-g++-64 {
LIBS += \
-L/usr/local/lib64 \
-L/usr/lib64
}
}
#
# [REQUIRED] Add support for <inttypes.h> to Windows.
#
...
...
@@ -311,13 +293,15 @@ contains(DEFINES, DISABLE_XBEE) {
} else:exists(user_config.pri):infile(user_config.pri, DEFINES, DISABLE_XBEE) {
message("Skipping support for native XBee API (manual override from user_config.pri)")
} else:LinuxBuild {
exists(/usr/include/xbee.h) {
linux-g++-64 {
message("Skipping support for XBee API (64-bit Linux builds not supported)")
} else:exists(/usr/include/xbee.h) {
message("Including support for XBee API")
HEADERS += $$XBEE_DEPENDENT_HEADERS
SOURCES += $$XBEE_DEPENDENT_SOURCES
DEFINES += $$XBEE_DEFINES
LIBS += -lxbee
LIBS +=
-L/usr/lib
-lxbee
} else {
warning("Skipping support for XBee API (missing libraries, see README)")
}
...
...
QGCSetup.pri
View file @
61ad6017
...
...
@@ -159,11 +159,8 @@ WindowsBuild {
DESTDIR_WIN = $$replace(DESTDIR, "/", "\\")
D_DIR = $$[QT_INSTALL_LIBEXECS]
DLL_DIR = $$replace(D_DIR, "/", "\\")
P_DIR = $$[QT_INSTALL_PLUGINS]
PLUGIN_DIR = $$replace(P_DIR, "/", "\\")
# Copy dependencies
DebugBuild: DLL_QT_DEBUGCHAR = "d"
ReleaseBuild: DLL_QT_DEBUGCHAR = ""
COPY_FILE_LIST = \
...
...
src/ui/QGCVehicleConfig.cc
View file @
61ad6017
...
...
@@ -104,8 +104,13 @@ QGCVehicleConfig::QGCVehicleConfig(QWidget *parent) :
connect
(
&
updateTimer
,
SIGNAL
(
timeout
()),
this
,
SLOT
(
updateView
()));
updateTimer
.
start
();
ui
->
advancedGroupBox
->
hide
();
connect
(
ui
->
advancedCheckBox
,
SIGNAL
(
toggled
(
bool
)),
ui
->
advancedGroupBox
,
SLOT
(
setShown
(
bool
)));
// Make sure the advanced features match what the checkbox indicates on startup and listen for
// future changes.
if
(
!
ui
->
advancedCheckBox
->
isChecked
())
{
ui
->
advancedGroupBox
->
hide
();
}
connect
(
ui
->
advancedCheckBox
,
SIGNAL
(
toggled
(
bool
)),
ui
->
advancedGroupBox
,
SLOT
(
setVisible
(
bool
)));
}
void
QGCVehicleConfig
::
rcMenuButtonClicked
()
{
...
...
src/ui/linechart/IncrementalPlot.cc
View file @
61ad6017
...
...
@@ -100,8 +100,6 @@ IncrementalPlot::IncrementalPlot(QWidget *parent):
resetScaling
();
legend
=
NULL
;
connect
(
this
,
SIGNAL
(
legendChecked
(
QwtPlotItem
*
,
bool
)),
this
,
SLOT
(
handleLegendClick
(
QwtPlotItem
*
,
bool
)));
}
IncrementalPlot
::~
IncrementalPlot
()
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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