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
Utilities
Kate
Commits
6cf924b4
Commit
6cf924b4
authored
Feb 19, 2022
by
Christoph Cullmann
🍨
Browse files
fix formatting
parent
300047ef
Pipeline
#140206
passed with stage
in 2 minutes and 26 seconds
Changes
2
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
addons/project/kateproject.cpp
View file @
6cf924b4
...
...
@@ -31,7 +31,6 @@ KateProject::KateProject(QThreadPool &threadPool, KateProjectPlugin *plugin, con
,
m_fileName
(
QFileInfo
(
fileName
).
canonicalFilePath
())
,
m_baseDir
(
QFileInfo
(
fileName
).
canonicalPath
())
{
// if canonicalFilePath already returned empty string, no need to try to load this
if
(
m_fileName
.
isEmpty
())
{
return
;
...
...
@@ -46,10 +45,10 @@ KateProject::KateProject(QThreadPool &threadPool, KateProjectPlugin *plugin, con
}
KateProject
::
KateProject
(
QThreadPool
&
threadPool
,
KateProjectPlugin
*
plugin
,
const
QVariantMap
&
globalProject
,
const
QString
&
directory
)
:
m_threadPool
(
threadPool
)
,
m_plugin
(
plugin
)
,
m_baseDir
(
directory
)
,
m_globalProject
(
globalProject
)
:
m_threadPool
(
threadPool
)
,
m_plugin
(
plugin
)
,
m_baseDir
(
directory
)
,
m_globalProject
(
globalProject
)
{
// try to load the project map, will start worker thread, too
load
(
globalProject
);
...
...
addons/project/kateproject.h
View file @
6cf924b4
...
...
@@ -284,7 +284,7 @@ private:
/**
* Project plugin (configuration)
*/
KateProjectPlugin
*
const
m_plugin
;
KateProjectPlugin
*
const
m_plugin
;
/**
* project file name, will stay constant
...
...
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