summaryrefslogtreecommitdiff
path: root/src/plugins/projectexplorer/projectfilewizardextension.cpp
diff options
context:
space:
mode:
authorhjk <hjk121@nokiamail.com>2013-08-30 16:38:57 +0200
committerTobias Hunger <tobias.hunger@digia.com>2013-09-03 11:41:45 +0200
commita37589d431844a64031d3044787c15f8dddace45 (patch)
tree4e4d2e07f31278b5606e779707697e65185cbc64 /src/plugins/projectexplorer/projectfilewizardextension.cpp
parent1226400af3da68f355f298935bc13807f257d224 (diff)
downloadqt-creator-a37589d431844a64031d3044787c15f8dddace45.tar.gz
Apply 'static' pattern to MimeDatabase
Also adjust and streamline using and surrounding code. Change-Id: I6a8b05126bdcbb74ff611b21c7cb3c5902a2d5ca Reviewed-by: Tobias Hunger <tobias.hunger@digia.com> Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Diffstat (limited to 'src/plugins/projectexplorer/projectfilewizardextension.cpp')
-rw-r--r--src/plugins/projectexplorer/projectfilewizardextension.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/plugins/projectexplorer/projectfilewizardextension.cpp b/src/plugins/projectexplorer/projectfilewizardextension.cpp
index 2475c90b48..87b4aa4408 100644
--- a/src/plugins/projectexplorer/projectfilewizardextension.cpp
+++ b/src/plugins/projectexplorer/projectfilewizardextension.cpp
@@ -546,8 +546,7 @@ void ProjectFileWizardExtension::applyCodeStyle(Core::GeneratedFile *file) const
if (file->isBinary() || file->contents().isEmpty())
return; // nothing to do
- const Core::MimeDatabase *mdb = Core::ICore::mimeDatabase();
- Core::MimeType mt = mdb->findByFile(QFileInfo(file->path()));
+ Core::MimeType mt = Core::MimeDatabase::findByFile(QFileInfo(file->path()));
Core::Id languageId = TextEditor::TextEditorSettings::instance()->languageId(mt.type());
if (!languageId.isValid())