Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
OpenFlipper
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OpenFlipper-Free
OpenFlipper
Merge requests
!244
View mode icon addition
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
View mode icon addition
view-mode-icon-addition
into
master
Overview
0
Commits
2
Pipelines
0
Changes
2
Merged
Edwin Özdemir
requested to merge
view-mode-icon-addition
into
master
2 years ago
Overview
0
Commits
2
Pipelines
0
Changes
2
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
65e70f33
2 commits,
2 years ago
2 files
+
35
−
8
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
Core/PluginLoader.cc
+
2
−
2
Options
@@ -776,8 +776,8 @@ void Core::loadPlugin(const QString& _filename,const bool _silent, QString& _lic
if
(
basePlugin
)
{
//set basic information about plugin
info
.
name
=
basePlugin
->
name
();
info
.
rpcName
=
info
.
name
.
remove
(
" "
).
toLower
();
info
.
name
=
basePlugin
->
name
();
/// place name
info
.
rpcName
=
basePlugin
->
name
()
.
remove
(
" "
).
toLower
();
/// modify copy of name, not name itself
info
.
description
=
basePlugin
->
description
();
info
.
warnings
=
"BLA"
;
Loading