Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Tobias Hunger
qt-creator
Commits
2f1f67f5
Commit
2f1f67f5
authored
Dec 03, 2008
by
hjk
Browse files
Merge branch '0.9.1-beta' of git@scm.dev.nokia.troll.no:creator/mainline into 0.9.1-beta
parents
741a3e8e
6dc7be59
Changes
4
Hide whitespace changes
Inline
Side-by-side
.gitignore
View file @
2f1f67f5
...
...
@@ -68,8 +68,8 @@ src/corelib/lib
src/network/lib
src/xml/lib/
#
Files copied by syncIde
# --------
---------------
#
Binaries
# --------
bin/Aggregation.dll
bin/CodeModel.dll
bin/ExtensionSystem.dll
...
...
@@ -77,24 +77,4 @@ bin/QtConcurrent.dll
bin/Utils.dll
bin/qtcreator
bin/qtcreator.exe
shared/help/bookmarkdialog.ui
shared/help/bookmarkmanager.cpp
shared/help/bookmarkmanager.h
shared/help/contentwindow.cpp
shared/help/contentwindow.h
shared/help/filternamedialog.cpp
shared/help/filternamedialog.h
shared/help/filternamedialog.ui
shared/help/helpviewer.cpp
shared/help/helpviewer.h
shared/help/indexwindow.cpp
shared/help/indexwindow.h
shared/help/topicchooser.cpp
shared/help/topicchooser.h
shared/help/topicchooser.ui
shared/proparser/abstractproitemvisitor.h
shared/proparser/profileevaluator.cpp
shared/proparser/profileevaluator.h
shared/proparser/proitems.cpp
shared/proparser/proitems.h
shared/proparser/proparserutils.h
tests/manual/cplusplus/cplusplus0
src/libs/utils/filewizarddialog.cpp
View file @
2f1f67f5
...
...
@@ -44,6 +44,8 @@ FileWizardDialog::FileWizardDialog(QWidget *parent) :
m_filePage
(
new
FileWizardPage
)
{
setWindowFlags
(
windowFlags
()
&
~
Qt
::
WindowContextHelpButtonHint
);
setOption
(
QWizard
::
NoCancelButton
,
false
);
setOption
(
QWizard
::
NoDefaultButton
,
false
);
setPixmap
(
QWizard
::
WatermarkPixmap
,
QPixmap
(
QLatin1String
(
":/qworkbench/images/qtwatermark.png"
)));
addPage
(
m_filePage
);
connect
(
m_filePage
,
SIGNAL
(
activated
()),
button
(
QWizard
::
FinishButton
),
SLOT
(
animateClick
()));
...
...
src/plugins/coreplugin/basefilewizard.cpp
View file @
2f1f67f5
...
...
@@ -509,6 +509,8 @@ QPixmap BaseFileWizard::watermark()
void
BaseFileWizard
::
setupWizard
(
QWizard
*
w
)
{
w
->
setPixmap
(
QWizard
::
WatermarkPixmap
,
watermark
());
w
->
setOption
(
QWizard
::
NoCancelButton
,
false
);
w
->
setOption
(
QWizard
::
NoDefaultButton
,
false
);
}
bool
BaseFileWizard
::
postGenerateFiles
(
const
GeneratedFiles
&
l
,
QString
*
errorMessage
)
...
...
src/plugins/cpptools/cppmodelmanager.cpp
View file @
2f1f67f5
...
...
@@ -505,7 +505,7 @@ CppModelManager::ProjectInfo *CppModelManager::projectInfo(ProjectExplorer::Proj
QFuture
<
void
>
CppModelManager
::
refreshSourceFiles
(
const
QStringList
&
sourceFiles
)
{
if
(
qgetenv
(
"QTCREATOR_NO_CODE_INDEXER"
).
isNull
())
{
if
(
!
sourceFiles
.
isEmpty
()
&&
qgetenv
(
"QTCREATOR_NO_CODE_INDEXER"
).
isNull
())
{
const
QMap
<
QString
,
QByteArray
>
workingCopy
=
buildWorkingCopyList
();
QFuture
<
void
>
result
=
QtConcurrent
::
run
(
&
CppModelManager
::
parse
,
this
,
...
...
@@ -657,6 +657,8 @@ void CppModelManager::parse(QFutureInterface<void> &future,
QStringList
files
,
QMap
<
QString
,
QByteArray
>
workingCopy
)
{
Q_ASSERT
(
!
files
.
isEmpty
());
// Change the priority of the background parser thread to idle.
QThread
::
currentThread
()
->
setPriority
(
QThread
::
IdlePriority
);
...
...
@@ -698,6 +700,8 @@ void CppModelManager::parse(QFutureInterface<void> &future,
#endif
}
future
.
setProgressValue
(
files
.
size
());
// Restore the previous thread priority.
QThread
::
currentThread
()
->
setPriority
(
QThread
::
NormalPriority
);
}
...
...
Write
Preview
Supports
Markdown
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