Skip to content

Commit

Permalink
feat: update to qt creator 7
Browse files Browse the repository at this point in the history
  • Loading branch information
gikari authored and sassanh committed Apr 19, 2023
1 parent e249c22 commit f8697ae
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion external/qtcreator/version.cmake
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-FileCopyrightText: None
# SPDX-License-Identifier: MIT

set(QT_CREATOR_VERSION "6.0.2")
set(QT_CREATOR_VERSION "7.0.2")
set(QT_CREATOR_SNAPSHOT "")
2 changes: 1 addition & 1 deletion src/QNVim.json.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
\"Name\" : \"QNVim\",
\"Version\" : \"6.0.2_1\",
\"Version\" : \"7.0.2_1\",
\"Vendor\" : \"Sassan Haradji\",
\"Copyright\" : \"(C) Sassan Haradji\",
\"License\" : \"MIT\",
Expand Down
6 changes: 3 additions & 3 deletions src/qnvimplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -897,11 +897,11 @@ void QNVimPlugin::handleNotification(const QByteArray &name, const QVariantList
<< "h"
<< "pro")
.contains(fileInfo.suffix(), Qt::CaseInsensitive))
e = Core::EditorManager::openEditor(filename);
e = Core::EditorManager::openEditor(Utils::FilePath::fromString(filename));
else
e = Core::EditorManager::openEditor(filename, "Core.PlainTextEditor");
e = Core::EditorManager::openEditor(Utils::FilePath::fromString(filename), "Core.PlainTextEditor");
} else {
e = Core::EditorManager::openEditor(filename);
e = Core::EditorManager::openEditor(Utils::FilePath::fromString(filename));
}
} else {
qDebug(Main) << 123;
Expand Down

0 comments on commit f8697ae

Please sign in to comment.