Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
b7e03ffd
Commit
b7e03ffd
authored
Oct 28, 2009
by
Friedemann Kleint
Browse files
Fix tr()/compiler warnings
parent
8b2c1501
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/plugins/coreplugin/editormanager/editorview.cpp
View file @
b7e03ffd
...
...
@@ -68,7 +68,7 @@ using namespace Core;
using
namespace
Core
::
Internal
;
//================EditorView====================
//
================EditorView====================
EditorView
::
EditorView
(
OpenEditorsModel
*
model
,
QWidget
*
parent
)
:
QWidget
(
parent
),
...
...
src/plugins/cpaster/codepasterprotocol.cpp
View file @
b7e03ffd
...
...
@@ -67,9 +67,9 @@ bool CodePasterProtocol::isValidHostName(const QString& hostName)
if
(
hostName
.
isEmpty
())
{
ICore
::
instance
()
->
messageManager
()
->
printToOutputPane
(
#ifdef Q_OS_MAC
tr
(
"No Server defined in the CodePaster preferences
!
"
),
tr
(
"No Server defined in the CodePaster preferences
.
"
),
#else
tr
(
"No Server defined in the CodePaster options
!
"
),
tr
(
"No Server defined in the CodePaster options
.
"
),
#endif
true
/*error*/
);
ICore
::
instance
()
->
messageManager
()
->
showOutputPane
();
...
...
src/plugins/projectexplorer/projectwelcomepagewidget.cpp
View file @
b7e03ffd
...
...
@@ -125,7 +125,7 @@ void ProjectWelcomePageWidget::updateWelcomePage(const WelcomePageData &welcomeP
if
(
welcomePageData
.
projectList
.
count
()
>
0
)
{
foreach
(
const
QStringPair
&
it
,
welcomePageData
.
projectList
)
{
const
QFileInfo
fi
(
it
.
first
);
QTreeWidgetItem
*
item
=
ui
->
projTreeWidget
->
addItem
(
it
.
second
,
it
.
first
,
fi
.
absolutePath
());
ui
->
projTreeWidget
->
addItem
(
it
.
second
,
it
.
first
,
fi
.
absolutePath
());
}
}
else
{
ui
->
projTreeWidget
->
hide
();
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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