Skip to content

Commit

Permalink
Remove const
Browse files Browse the repository at this point in the history
  • Loading branch information
DonLakeFlyer committed Dec 17, 2024
1 parent dc1f442 commit be57c7f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/API/QGCCorePlugin.cc
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ const QVariantList &QGCCorePlugin::analyzePages() const
return analyzeList;
}

const QGCOptions *QGCCorePlugin::options() const
QGCOptions *QGCCorePlugin::options()
{
return _defaultOptions;
}
Expand Down
2 changes: 1 addition & 1 deletion src/API/QGCCorePlugin.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class QGCCorePlugin : public QObject

/// Global options
/// @return An instance of QGCOptions
virtual const QGCOptions *options() const;
virtual QGCOptions *options();

/// Allows the core plugin to override the visibility for a settings group
/// @param name - SettingsGroup name
Expand Down

0 comments on commit be57c7f

Please sign in to comment.