Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
f5e7fb9c
Commit
f5e7fb9c
authored
Jun 12, 2009
by
Thorbjørn Lindeijer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Corrected name of .config editor
parent
7248f9a0
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
8 deletions
+7
-8
src/plugins/coreplugin/inavigationwidgetfactory.cpp
src/plugins/coreplugin/inavigationwidgetfactory.cpp
+0
-3
src/plugins/cppeditor/cpphoverhandler.cpp
src/plugins/cppeditor/cpphoverhandler.cpp
+1
-1
src/plugins/genericprojectmanager/genericprojectconstants.h
src/plugins/genericprojectmanager/genericprojectconstants.h
+1
-1
src/plugins/projectexplorer/buildconfiguration.h
src/plugins/projectexplorer/buildconfiguration.h
+4
-2
src/plugins/texteditor/completionsupport.cpp
src/plugins/texteditor/completionsupport.cpp
+1
-1
No files found.
src/plugins/coreplugin/inavigationwidgetfactory.cpp
View file @
f5e7fb9c
...
...
@@ -46,13 +46,10 @@ QKeySequence INavigationWidgetFactory::activationSequence()
return
QKeySequence
();
}
void
INavigationWidgetFactory
::
saveSettings
(
int
/* position */
,
QWidget
*
/* widget */
)
{
}
void
INavigationWidgetFactory
::
restoreSettings
(
int
/* position */
,
QWidget
*
/* widget */
)
{
}
src/plugins/cppeditor/cpphoverhandler.cpp
View file @
f5e7fb9c
...
...
@@ -269,7 +269,7 @@ void CppHoverHandler::updateHelpIdAndTooltip(TextEditor::ITextEditor *editor, in
const
Snapshot
documents
=
m_modelManager
->
snapshot
();
const
QString
fileName
=
editor
->
file
()
->
fileName
();
Document
::
Ptr
doc
=
documents
.
value
(
fileName
);
if
(
!
doc
)
if
(
!
doc
)
return
;
// nothing to do
QTextCursor
tc
(
edit
->
document
());
...
...
src/plugins/genericprojectmanager/genericprojectconstants.h
View file @
f5e7fb9c
...
...
@@ -49,7 +49,7 @@ const char *const FILES_MIMETYPE = "application/vnd.nokia.qt.generic.files";
const
char
*
const
INCLUDES_EDITOR
=
".includes Editor"
;
const
char
*
const
INCLUDES_MIMETYPE
=
"application/vnd.nokia.qt.generic.includes"
;
const
char
*
const
CONFIG_EDITOR
=
".
includes
Editor"
;
const
char
*
const
CONFIG_EDITOR
=
".
config
Editor"
;
const
char
*
const
CONFIG_MIMETYPE
=
"application/vnd.nokia.qt.generic.config"
;
}
// namespace Constants
...
...
src/plugins/projectexplorer/buildconfiguration.h
View file @
f5e7fb9c
...
...
@@ -36,14 +36,15 @@
namespace
ProjectExplorer
{
namespace
Internal
{
class
BuildConfiguration
{
public:
BuildConfiguration
(
const
QString
&
name
);
BuildConfiguration
(
const
QString
&
name
,
BuildConfiguration
*
source
);
QString
name
()
const
;
QVariant
getValue
(
const
QString
&
key
)
const
;
void
setValue
(
const
QString
&
key
,
QVariant
value
);
QVariant
getValue
(
const
QString
&
key
)
const
;
void
setValue
(
const
QString
&
key
,
QVariant
value
);
QString
displayName
();
void
setDisplayName
(
const
QString
&
name
);
...
...
@@ -55,6 +56,7 @@ private:
QHash
<
QString
,
QVariant
>
m_values
;
QString
m_name
;
};
}
}
// namespace ProjectExplorer
...
...
src/plugins/texteditor/completionsupport.cpp
View file @
f5e7fb9c
...
...
@@ -192,7 +192,7 @@ QList<CompletionItem> CompletionSupport::getCompletions() const
QString
lastKey
;
QList
<
CompletionItem
>
uniquelist
;
foreach
(
const
CompletionItem
item
,
completionItems
)
{
foreach
(
const
CompletionItem
&
item
,
completionItems
)
{
if
(
item
.
m_text
!=
lastKey
)
{
uniquelist
.
append
(
item
);
lastKey
=
item
.
m_text
;
...
...
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