Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
VideoLAN
VLMC
Commits
935ffd9b
Commit
935ffd9b
authored
Mar 24, 2010
by
Hugo Beauzee-Luyssen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ProjectManager: solved SLOT problem.
parent
554b026c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
5 deletions
+3
-5
src/Gui/project/GuiProjectManager.cpp
src/Gui/project/GuiProjectManager.cpp
+3
-1
src/Project/ProjectManager.cpp
src/Project/ProjectManager.cpp
+0
-4
No files found.
src/Gui/project/GuiProjectManager.cpp
View file @
935ffd9b
...
...
@@ -52,7 +52,9 @@ GUIProjectManager::GUIProjectManager()
SettingsManager
::
Vlmc
,
Qt
::
QueuedConnection
);
automaticSaveEnabledChanged
(
VLMC_GET_BOOL
(
"general/AutomaticBackup"
)
);
SettingsManager
::
getInstance
()
->
watchValue
(
"general/ProjectName"
,
this
,
SLOT
(
projectNameChanged
(
QVariant
)
),
SettingsManager
::
Project
);
}
bool
...
...
src/Project/ProjectManager.cpp
View file @
935ffd9b
...
...
@@ -87,10 +87,6 @@ ProjectManager::ProjectManager() : m_projectFile( NULL ), m_needSave( false )
VLMC_CREATE_PROJECT_STRING
(
"general/VLMCWorkspace"
,
QDir
::
homePath
(),
"Workspace location"
,
"The place where all project's videos will be stored"
);
VLMC_CREATE_PROJECT_STRING
(
"general/ProjectName"
,
unNamedProject
,
"Project name"
,
"The project name"
);
SettingsManager
::
getInstance
()
->
watchValue
(
"general/ProjectName"
,
this
,
SLOT
(
projectNameChanged
(
QVariant
)
),
SettingsManager
::
Project
);
}
ProjectManager
::~
ProjectManager
()
...
...
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