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
c598118d
Commit
c598118d
authored
Dec 01, 2010
by
con
Browse files
Update the filter matches for the settings dialog.
Task-number: QTCREATORBUG-2936
parent
e650076f
Changes
25
Hide whitespace changes
Inline
Side-by-side
src/plugins/coreplugin/generalsettings.cpp
View file @
c598118d
...
...
@@ -167,9 +167,15 @@ QWidget *GeneralSettings::createPage(QWidget *parent)
#endif
if
(
m_searchKeywords
.
isEmpty
())
{
QTextStream
(
&
m_searchKeywords
)
<<
m_page
->
colorLabel
->
text
()
<<
' '
<<
m_page
->
terminalLabel
->
text
()
<<
' '
<<
m_page
->
editorLabel
->
text
()
<<
' '
<<
m_page
->
modifiedLabel
->
text
();
QLatin1Char
sep
(
' '
);
QTextStream
(
&
m_searchKeywords
)
<<
m_page
->
interfaceBox
->
title
()
<<
sep
<<
m_page
->
colorLabel
->
text
()
<<
sep
<<
m_page
->
languageLabel
->
text
()
<<
sep
<<
m_page
->
systemBox
->
title
()
<<
sep
<<
m_page
->
terminalLabel
->
text
()
<<
sep
<<
m_page
->
editorLabel
->
text
()
<<
sep
<<
m_page
->
modifiedLabel
->
text
();
m_searchKeywords
.
remove
(
QLatin1Char
(
'&'
));
}
return
w
;
...
...
src/plugins/coreplugin/generalsettings.ui
View file @
c598118d
...
...
@@ -12,7 +12,7 @@
</property>
<layout
class=
"QVBoxLayout"
name=
"verticalLayout"
>
<item>
<widget
class=
"QGroupBox"
name=
"
group
Box
_2
"
>
<widget
class=
"QGroupBox"
name=
"
interface
Box"
>
<property
name=
"title"
>
<string>
User Interface
</string>
</property>
...
...
@@ -115,7 +115,7 @@
</widget>
</item>
<item>
<widget
class=
"QGroupBox"
name=
"
group
Box"
>
<widget
class=
"QGroupBox"
name=
"
system
Box"
>
<property
name=
"title"
>
<string>
System
</string>
</property>
...
...
src/plugins/cvs/settingspage.cpp
View file @
c598118d
...
...
@@ -76,10 +76,17 @@ void SettingsPageWidget::setSettings(const CVSSettings &s)
QString
SettingsPageWidget
::
searchKeywords
()
const
{
QString
rc
;
QTextStream
(
&
rc
)
<<
m_ui
.
promptToSubmitCheckBox
->
text
()
<<
' '
<<
m_ui
.
describeByCommitIdCheckBox
->
text
()
<<
' '
<<
m_ui
.
commandLabel
->
text
()
<<
' '
<<
m_ui
.
rootLabel
->
text
()
<<
' '
<<
m_ui
.
diffOptionsLabel
->
text
();
QLatin1Char
sep
(
' '
);
QTextStream
(
&
rc
)
<<
sep
<<
m_ui
.
configGroupBox
->
title
()
<<
sep
<<
m_ui
.
commandLabel
->
text
()
<<
sep
<<
m_ui
.
rootLabel
->
text
()
<<
sep
<<
m_ui
.
miscGroupBox
->
title
()
<<
sep
<<
m_ui
.
timeOutLabel
->
text
()
<<
sep
<<
m_ui
.
diffOptionsLabel
->
text
()
<<
sep
<<
m_ui
.
promptToSubmitCheckBox
->
text
()
<<
sep
<<
m_ui
.
describeByCommitIdCheckBox
->
text
()
;
rc
.
remove
(
QLatin1Char
(
'&'
));
return
rc
;
}
...
...
src/plugins/cvs/settingspage.ui
View file @
c598118d
...
...
@@ -12,7 +12,7 @@
</property>
<layout
class=
"QVBoxLayout"
name=
"verticalLayout"
>
<item>
<widget
class=
"QGroupBox"
name=
"
misc
GroupBox"
>
<widget
class=
"QGroupBox"
name=
"
config
GroupBox"
>
<property
name=
"title"
>
<string>
Configuration
</string>
</property>
...
...
@@ -25,7 +25,7 @@
</widget>
</item>
<item
row=
"0"
column=
"1"
>
<widget
class=
"Utils::PathChooser"
name=
"commandPathChooser"
/>
<widget
class=
"Utils::PathChooser"
name=
"commandPathChooser"
native=
"true"
/>
</item>
<item
row=
"1"
column=
"0"
>
<widget
class=
"QLabel"
name=
"rootLabel"
>
...
...
@@ -41,7 +41,7 @@
</widget>
</item>
<item>
<widget
class=
"QGroupBox"
name=
"miscGroupBox
_2
"
>
<widget
class=
"QGroupBox"
name=
"miscGroupBox"
>
<property
name=
"title"
>
<string>
Miscellaneous
</string>
</property>
...
...
src/plugins/debugger/commonoptionspage.ui
View file @
c598118d
...
...
@@ -12,7 +12,7 @@
</property>
<layout
class=
"QVBoxLayout"
name=
"verticalLayout"
>
<item>
<widget
class=
"QGroupBox"
name=
"
group
Box"
>
<widget
class=
"QGroupBox"
name=
"
behavior
Box"
>
<property
name=
"title"
>
<string>
GUI Behavior
</string>
</property>
...
...
src/plugins/debugger/debuggerplugin.cpp
View file @
c598118d
...
...
@@ -619,14 +619,18 @@ QWidget *CommonOptionsPage::createPage(QWidget *parent)
#endif
if
(
m_searchKeywords
.
isEmpty
())
{
QTextStream
(
&
m_searchKeywords
)
<<
' '
<<
m_ui
.
checkBoxListSourceFiles
->
text
()
<<
' '
<<
m_ui
.
checkBoxUseAlternatingRowColors
->
text
()
<<
' '
<<
m_ui
.
checkBoxUseToolTipsInMainEditor
->
text
()
QLatin1Char
sep
(
' '
);
QTextStream
(
&
m_searchKeywords
)
<<
sep
<<
m_ui
.
checkBoxUseAlternatingRowColors
->
text
()
<<
sep
<<
m_ui
.
checkBoxUseToolTipsInMainEditor
->
text
()
<<
sep
<<
m_ui
.
checkBoxListSourceFiles
->
text
()
#ifdef Q_OS_WIN
<<
' '
<<
m_ui
.
checkBoxRegisterForPostMortem
->
text
()
<<
sep
<<
m_ui
.
checkBoxRegisterForPostMortem
->
text
()
#endif
<<
' '
<<
m_ui
.
labelMaximalStackDepth
->
text
();
<<
sep
<<
m_ui
.
checkBoxCloseBuffersOnExit
->
text
()
<<
sep
<<
m_ui
.
checkBoxSwitchModeOnExit
->
text
()
<<
sep
<<
m_ui
.
labelMaximalStackDepth
->
text
()
;
m_searchKeywords
.
remove
(
QLatin1Char
(
'&'
));
}
#ifndef Q_OS_WIN
...
...
src/plugins/debugger/gdb/gdboptionspage.cpp
View file @
c598118d
...
...
@@ -216,13 +216,22 @@ QWidget *GdbOptionsPage::createPage(QWidget *parent)
m_ui
.
labelEnvironment
->
hide
();
if
(
m_searchKeywords
.
isEmpty
())
{
// TODO: Add breakpoints, environment?
QTextStream
(
&
m_searchKeywords
)
<<
' '
<<
QLatin1String
(
"gdb"
)
<<
' '
<<
m_ui
.
checkBoxSkipKnownFrames
->
text
()
<<
' '
<<
m_ui
.
checkBoxEnableReverseDebugging
->
text
()
<<
' '
<<
m_ui
.
checkBoxUseMessageBoxForSignals
->
text
()
<<
' '
<<
m_ui
.
labelEnvironment
->
text
()
<<
' '
<<
m_ui
.
labelGdbStartupScript
->
text
();
QLatin1Char
sep
(
' '
);
QTextStream
(
&
m_searchKeywords
)
<<
sep
<<
m_ui
.
groupBoxLocations
->
title
()
<<
sep
<<
m_ui
.
labelEnvironment
->
text
()
<<
sep
<<
m_ui
.
labelGdbStartupScript
->
text
()
<<
sep
<<
m_ui
.
labelGdbWatchdogTimeout
->
text
()
<<
sep
<<
m_ui
.
checkBoxEnableReverseDebugging
->
text
()
<<
sep
<<
m_ui
.
checkBoxSkipKnownFrames
->
text
()
<<
sep
<<
m_ui
.
checkBoxUseMessageBoxForSignals
->
text
()
<<
sep
<<
m_ui
.
checkBoxAdjustBreakpointLocations
->
text
()
<<
sep
<<
m_ui
.
groupBoxPluginDebugging
->
title
()
<<
sep
<<
m_ui
.
radioButtonAllPluginBreakpoints
->
text
()
<<
sep
<<
m_ui
.
radioButtonSelectedPluginBreakpoints
->
text
()
<<
sep
<<
m_ui
.
labelSelectedPluginBreakpoints
->
text
()
<<
sep
<<
m_ui
.
radioButtonNoPluginBreakpoints
->
text
()
;
m_searchKeywords
.
remove
(
QLatin1Char
(
'&'
));
}
return
w
;
...
...
src/plugins/fakevim/fakevimoptions.ui
View file @
c598118d
...
...
@@ -6,8 +6,8 @@
<rect>
<x>
0
</x>
<y>
0
</y>
<width>
472
</width>
<height>
4
21
</height>
<width>
513
</width>
<height>
4
45
</height>
</rect>
</property>
<layout
class=
"QVBoxLayout"
name=
"verticalLayout_2"
>
...
...
@@ -26,7 +26,7 @@
</widget>
</item>
<item>
<widget
class=
"QGroupBox"
name=
"
group
Box"
>
<widget
class=
"QGroupBox"
name=
"
behavior
Box"
>
<property
name=
"title"
>
<string>
Vim Behavior
</string>
</property>
...
...
src/plugins/fakevim/fakevimplugin.cpp
View file @
c598118d
...
...
@@ -199,19 +199,24 @@ QWidget *FakeVimOptionPage::createPage(QWidget *parent)
connect
(
m_ui
.
pushButtonSetPlainStyle
,
SIGNAL
(
clicked
()),
this
,
SLOT
(
setPlainStyle
()));
if
(
m_searchKeywords
.
isEmpty
())
{
QLatin1Char
sep
(
' '
);
QTextStream
(
&
m_searchKeywords
)
<<
' '
<<
m_ui
.
checkBoxAutoIndent
->
text
()
<<
' '
<<
m_ui
.
checkBoxExpandTab
->
text
()
<<
' '
<<
m_ui
.
checkBoxShowMarks
->
text
()
<<
' '
<<
m_ui
.
checkBoxSmartIndent
->
text
()
<<
' '
<<
m_ui
.
checkBoxPassControlKey
->
text
()
<<
' '
<<
m_ui
.
checkBoxHlSearch
->
text
()
<<
' '
<<
m_ui
.
checkBoxIncSearch
->
text
()
<<
' '
<<
m_ui
.
checkBoxSmartTab
->
text
()
<<
' '
<<
m_ui
.
checkBoxStartOfLine
->
text
()
<<
' '
<<
m_ui
.
labelShiftWidth
->
text
()
<<
' '
<<
m_ui
.
labelTabulator
->
text
()
<<
' '
<<
m_ui
.
labelBackspace
->
text
();
<<
sep
<<
m_ui
.
checkBoxUseFakeVim
->
text
()
<<
sep
<<
m_ui
.
checkBoxReadVimRc
->
text
()
<<
sep
<<
m_ui
.
checkBoxAutoIndent
->
text
()
<<
sep
<<
m_ui
.
checkBoxSmartIndent
->
text
()
<<
sep
<<
m_ui
.
checkBoxExpandTab
->
text
()
<<
sep
<<
m_ui
.
checkBoxSmartTab
->
text
()
<<
sep
<<
m_ui
.
checkBoxHlSearch
->
text
()
<<
sep
<<
m_ui
.
checkBoxIncSearch
->
text
()
<<
sep
<<
m_ui
.
checkBoxStartOfLine
->
text
()
<<
sep
<<
m_ui
.
checkBoxUseCoreSearch
->
text
()
<<
sep
<<
m_ui
.
checkBoxShowMarks
->
text
()
<<
sep
<<
m_ui
.
checkBoxPassControlKey
->
text
()
<<
sep
<<
m_ui
.
labelShiftWidth
->
text
()
<<
sep
<<
m_ui
.
labelTabulator
->
text
()
<<
sep
<<
m_ui
.
labelBackspace
->
text
()
<<
sep
<<
m_ui
.
labelIsKeyword
->
text
();
m_searchKeywords
.
remove
(
QLatin1Char
(
'&'
));
}
return
w
;
...
...
src/plugins/git/settingspage.cpp
View file @
c598118d
...
...
@@ -98,11 +98,19 @@ void SettingsPageWidget::setSystemPath()
QString
SettingsPageWidget
::
searchKeywords
()
const
{
QString
rc
;
QTextStream
(
&
rc
)
<<
' '
<<
m_ui
.
pathlabel
->
text
()
<<
' '
<<
m_ui
.
logCountLabel
->
text
()
<<
' '
<<
m_ui
.
timeoutLabel
->
text
()
<<
' '
<<
m_ui
.
promptToSubmitCheckBox
->
text
()
<<
' '
<<
m_ui
.
promptToSubmitCheckBox
->
text
()
<<
' '
<<
m_ui
.
environmentGroupBox
->
title
();
QLatin1Char
sep
(
' '
);
QTextStream
(
&
rc
)
<<
sep
<<
m_ui
.
environmentGroupBox
->
title
()
<<
sep
<<
m_ui
.
pathlabel
->
text
()
<<
sep
<<
m_ui
.
winHomeCheckBox
->
text
()
<<
sep
<<
m_ui
.
groupBox
->
title
()
<<
sep
<<
m_ui
.
logCountLabel
->
text
()
<<
sep
<<
m_ui
.
timeoutLabel
->
text
()
<<
sep
<<
m_ui
.
promptToSubmitCheckBox
->
text
()
<<
sep
<<
m_ui
.
promptToSubmitCheckBox
->
text
()
<<
sep
<<
m_ui
.
gitkGroupBox
->
title
()
<<
sep
<<
m_ui
.
gitkOptionsLabel
->
text
()
;
rc
.
remove
(
QLatin1Char
(
'&'
));
return
rc
;
}
...
...
src/plugins/mercurial/optionspage.cpp
View file @
c598118d
...
...
@@ -73,12 +73,18 @@ void OptionsPageWidget::setSettings(const MercurialSettings &s)
QString
OptionsPageWidget
::
searchKeywords
()
const
{
QString
rc
;
QTextStream
(
&
rc
)
<<
' '
<<
m_ui
.
mercurialCommandLabel
->
text
()
<<
' '
<<
m_ui
.
showLogEntriesLabel
->
text
()
<<
' '
<<
m_ui
.
timeoutSecondsLabel
->
text
()
<<
' '
<<
m_ui
.
promptOnSubmitCheckBox
->
text
()
<<
' '
<<
m_ui
.
defaultUsernameLabel
->
text
()
<<
' '
<<
m_ui
.
defaultEmailLabel
->
text
();
QLatin1Char
sep
(
' '
);
QTextStream
(
&
rc
)
<<
sep
<<
m_ui
.
configGroupBox
->
title
()
<<
sep
<<
m_ui
.
mercurialCommandLabel
->
text
()
<<
sep
<<
m_ui
.
userGroupBox
->
title
()
<<
sep
<<
m_ui
.
defaultUsernameLabel
->
text
()
<<
sep
<<
m_ui
.
defaultEmailLabel
->
text
()
<<
sep
<<
m_ui
.
miscGroupBox
->
title
()
<<
sep
<<
m_ui
.
showLogEntriesLabel
->
text
()
<<
sep
<<
m_ui
.
timeoutSecondsLabel
->
text
()
<<
sep
<<
m_ui
.
promptOnSubmitCheckBox
->
text
()
;
rc
.
remove
(
QLatin1Char
(
'&'
));
return
rc
;
}
...
...
src/plugins/mercurial/optionspage.ui
View file @
c598118d
...
...
@@ -15,7 +15,7 @@
</property>
<layout
class=
"QVBoxLayout"
name=
"verticalLayout"
>
<item>
<widget
class=
"QGroupBox"
name=
"config
g
roupBox"
>
<widget
class=
"QGroupBox"
name=
"config
G
roupBox"
>
<property
name=
"title"
>
<string>
Configuration
</string>
</property>
...
...
@@ -28,7 +28,7 @@
</widget>
</item>
<item
row=
"0"
column=
"1"
>
<widget
class=
"Utils::PathChooser"
name=
"commandChooser"
/>
<widget
class=
"Utils::PathChooser"
name=
"commandChooser"
native=
"true"
/>
</item>
</layout>
</widget>
...
...
@@ -147,6 +147,10 @@
<extends>
QWidget
</extends>
<header
location=
"global"
>
utils/pathchooser.h
</header>
<container>
1
</container>
<slots>
<signal>
editingFinished()
</signal>
<signal>
browsingFinished()
</signal>
</slots>
</customwidget>
</customwidgets>
<resources/>
...
...
src/plugins/perforce/settingspage.cpp
View file @
c598118d
...
...
@@ -117,10 +117,20 @@ void SettingsPageWidget::setStatusError(const QString &t)
QString
SettingsPageWidget
::
searchKeywords
()
const
{
QString
rc
;
QTextStream
(
&
rc
)
<<
m_ui
.
promptToSubmitCheckBox
->
text
()
<<
' '
<<
m_ui
.
commandLabel
<<
m_ui
.
environmentGroupBox
->
title
()
<<
' '
<<
m_ui
.
clientLabel
->
text
()
<<
' '
<<
m_ui
.
userLabel
->
text
()
<<
' '
<<
m_ui
.
portLabel
->
text
();
QLatin1Char
sep
(
' '
);
QTextStream
(
&
rc
)
<<
sep
<<
m_ui
.
configGroupBox
->
title
()
<<
sep
<<
m_ui
.
commandLabel
->
text
()
<<
sep
<<
m_ui
.
environmentGroupBox
->
title
()
<<
sep
<<
m_ui
.
portLabel
->
text
()
<<
sep
<<
m_ui
.
clientLabel
->
text
()
<<
sep
<<
m_ui
.
userLabel
->
text
()
<<
sep
<<
m_ui
.
miscGroupBox
->
title
()
<<
sep
<<
m_ui
.
logCountLabel
->
text
()
<<
sep
<<
m_ui
.
timeOutLabel
->
text
()
<<
sep
<<
m_ui
.
promptToSubmitCheckBox
->
text
()
<<
sep
<<
m_ui
.
autoOpenCheckBox
->
text
()
;
rc
.
remove
(
QLatin1Char
(
'&'
));
return
rc
;
}
...
...
src/plugins/perforce/settingspage.ui
View file @
c598118d
...
...
@@ -2,6 +2,14 @@
<ui
version=
"4.0"
>
<class>
Perforce::Internal::SettingsPage
</class>
<widget
class=
"QWidget"
name=
"Perforce::Internal::SettingsPage"
>
<property
name=
"geometry"
>
<rect>
<x>
0
</x>
<y>
0
</y>
<width>
306
</width>
<height>
516
</height>
</rect>
</property>
<layout
class=
"QVBoxLayout"
name=
"verticalLayout"
>
<item>
<widget
class=
"QGroupBox"
name=
"configGroupBox"
>
...
...
@@ -37,12 +45,6 @@
<bool>
false
</bool>
</property>
<layout
class=
"QGridLayout"
>
<property
name=
"margin"
>
<number>
9
</number>
</property>
<property
name=
"spacing"
>
<number>
6
</number>
</property>
<item
row=
"1"
column=
"1"
>
<widget
class=
"QLineEdit"
name=
"clientLineEdit"
/>
</item>
...
...
@@ -77,7 +79,7 @@
</widget>
</item>
<item>
<widget
class=
"QGroupBox"
name=
"misc
g
roupBox"
>
<widget
class=
"QGroupBox"
name=
"misc
G
roupBox"
>
<property
name=
"title"
>
<string>
Miscellaneous
</string>
</property>
...
...
src/plugins/projectexplorer/projectexplorersettingspage.cpp
View file @
c598118d
...
...
@@ -116,7 +116,23 @@ void ProjectExplorerSettingsWidget::slotDirectoryButtonGroupChanged()
QString
ProjectExplorerSettingsWidget
::
searchKeywords
()
const
{
return
QLatin1String
(
"jom"
)
+
QLatin1Char
(
' '
)
+
m_ui
.
directoryGroupBox
->
title
();
if
(
m_searchKeywords
.
isEmpty
())
{
QLatin1Char
sep
(
' '
);
m_searchKeywords
=
m_ui
.
directoryGroupBox
->
title
()
+
sep
+
m_ui
.
currentDirectoryRadioButton
->
text
()
+
sep
+
m_ui
.
directoryRadioButton
->
text
()
+
sep
+
m_ui
.
buildAndRunGroupBox
->
title
()
+
sep
+
m_ui
.
saveAllFilesCheckBox
->
text
()
+
sep
+
m_ui
.
buildProjectBeforeDeployCheckBox
->
text
()
+
sep
+
m_ui
.
deployProjectBeforeRunCheckBox
->
text
()
+
sep
+
m_ui
.
showCompileOutputCheckBox
->
text
()
+
sep
+
m_ui
.
cleanOldAppOutputCheckBox
->
text
()
+
sep
+
m_ui
.
wrapAppOutputCheckBox
->
text
()
+
sep
+
m_ui
.
jomLabel
->
text
()
;
m_searchKeywords
.
remove
(
QLatin1Char
(
'&'
));
}
return
m_searchKeywords
;
}
// ------------------ ProjectExplorerSettingsPage
...
...
src/plugins/projectexplorer/projectexplorersettingspage.h
View file @
c598118d
...
...
@@ -63,6 +63,7 @@ private:
void
setJomVisible
(
bool
);
Ui
::
ProjectExplorerSettingsPageUi
m_ui
;
mutable
QString
m_searchKeywords
;
};
class
ProjectExplorerSettingsPage
:
public
Core
::
IOptionsPage
...
...
src/plugins/qmldesigner/settingspage.cpp
View file @
c598118d
...
...
@@ -62,8 +62,8 @@ QString SettingsPageWidget::searchKeywords() const
{
QString
rc
;
QTextStream
(
&
rc
)
<<
' '
<<
m_ui
.
snapMarginLabel
<<
' '
<<
m_ui
.
itemSpacingLabel
;
<<
' '
<<
m_ui
.
snapMarginLabel
->
text
()
<<
' '
<<
m_ui
.
itemSpacingLabel
->
text
()
;
rc
.
remove
(
QLatin1Char
(
'&'
));
return
rc
;
}
...
...
src/plugins/qmljseditor/quicktoolbarsettingspage.cpp
View file @
c598118d
...
...
@@ -106,8 +106,8 @@ QString QuickToolBarSettingsPageWidget::searchKeywords() const
{
QString
rc
;
QTextStream
(
&
rc
)
<<
' '
<<
m_ui
.
textEditHelperCheckBox
<<
' '
<<
m_ui
.
textEditHelperCheckBoxPin
;
<<
' '
<<
m_ui
.
textEditHelperCheckBox
->
text
()
<<
' '
<<
m_ui
.
textEditHelperCheckBoxPin
->
text
()
;
rc
.
remove
(
QLatin1Char
(
'&'
));
return
rc
;
}
...
...
src/plugins/qt4projectmanager/qtoptionspage.cpp
View file @
c598118d
...
...
@@ -875,11 +875,17 @@ QList<QSharedPointerQtVersion> QtOptionsPageWidget::versions() const
QString
QtOptionsPageWidget
::
searchKeywords
()
const
{
QString
rc
;
QTextStream
(
&
rc
)
<<
' '
<<
m_ui
->
mingwLabel
->
text
()
<<
' '
<<
m_ui
->
msvcLabel
->
text
()
<<
' '
<<
m_ui
->
gcceLabel
->
text
()
<<
' '
<<
m_ui
->
mwcLabel
->
text
()
<<
' '
<<
m_ui
->
debuggingHelperLabel
->
text
();
QLatin1Char
sep
(
' '
);
QTextStream
(
&
rc
)
<<
sep
<<
m_ui
->
versionNameLabel
->
text
()
<<
sep
<<
m_ui
->
pathLabel
->
text
()
<<
sep
<<
m_ui
->
mingwLabel
->
text
()
<<
sep
<<
m_ui
->
msvcLabel
->
text
()
<<
sep
<<
m_ui
->
s60SDKLabel
->
text
()
<<
sep
<<
m_ui
->
gcceLabel
->
text
()
<<
sep
<<
m_ui
->
mwcLabel
->
text
()
<<
sep
<<
m_ui
->
sbsV2Label
->
text
()
<<
sep
<<
m_ui
->
debuggingHelperLabel
->
text
();
rc
.
remove
(
QLatin1Char
(
'&'
));
return
rc
;
}
src/plugins/subversion/settingspage.cpp
View file @
c598118d
...
...
@@ -82,11 +82,19 @@ void SettingsPageWidget::setSettings(const SubversionSettings &s)
QString
SettingsPageWidget
::
searchKeywords
()
const
{
QString
rc
;
QTextStream
(
&
rc
)
<<
m_ui
.
commandLabel
->
text
()
<<
' '
<<
m_ui
.
usernameLabel
->
text
()
<<
' '
<<
m_ui
.
passwordLabel
->
text
()
<<
' '
<<
m_ui
.
userGroupBox
->
title
()
<<
' '
<<
m_ui
.
spaceIgnorantAnnotationCheckBox
->
text
();
QLatin1Char
sep
(
' '
);
QTextStream
(
&
rc
)
<<
sep
<<
m_ui
.
generalGroupBox
->
title
()
<<
sep
<<
m_ui
.
commandLabel
->
text
()
<<
sep
<<
m_ui
.
userGroupBox
->
title
()
<<
sep
<<
m_ui
.
usernameLabel
->
text
()
<<
sep
<<
m_ui
.
passwordLabel
->
text
()
<<
sep
<<
m_ui
.
miscGroupBox
->
title
()
<<
sep
<<
m_ui
.
logCountLabel
->
text
()
<<
sep
<<
m_ui
.
timeOutLabel
->
text
()
<<
sep
<<
m_ui
.
promptToSubmitCheckBox
->
text
()
<<
sep
<<
m_ui
.
spaceIgnorantAnnotationCheckBox
->
text
()
;
rc
.
remove
(
QLatin1Char
(
'&'
));
return
rc
;
}
...
...
Prev
1
2
Next
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