Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
VideoLAN
VLMC
Commits
1c140bb2
Commit
1c140bb2
authored
Apr 02, 2014
by
Hugo Beauzée-Luyssen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Project: Do not connect components together twice
This is already done from the CTOR
parent
209d28a1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
2 deletions
+0
-2
src/Project/Project.cpp
src/Project/Project.cpp
+0
-2
No files found.
src/Project/Project.cpp
View file @
1c140bb2
...
@@ -117,7 +117,6 @@ Project::load( const QString& fileName )
...
@@ -117,7 +117,6 @@ Project::load( const QString& fileName )
// Now let's start over with a clean state.
// Now let's start over with a clean state.
self
=
getInstance
();
self
=
getInstance
();
self
->
connectComponents
();
Core
::
getInstance
()
->
onProjectLoaded
(
self
);
Core
::
getInstance
()
->
onProjectLoaded
(
self
);
self
->
loadProject
(
fileName
);
self
->
loadProject
(
fileName
);
...
@@ -134,7 +133,6 @@ Project::create(const QString& projectName, const QString& projectPath )
...
@@ -134,7 +133,6 @@ Project::create(const QString& projectName, const QString& projectPath )
self
=
Project
::
getInstance
();
self
=
Project
::
getInstance
();
self
->
newProject
(
projectName
,
projectPath
);
self
->
newProject
(
projectName
,
projectPath
);
self
->
connectComponents
();
Core
::
getInstance
()
->
onProjectLoaded
(
self
);
Core
::
getInstance
()
->
onProjectLoaded
(
self
);
return
true
;
return
true
;
...
...
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