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
Tobias Hunger
qt-creator
Commits
ae7864f9
Commit
ae7864f9
authored
Feb 13, 2009
by
lowinu
Browse files
Fixes: cpaster plugin options
RevBy: andre Details: - the settings have not been taken into respect so far.
parent
581dae10
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/plugins/cpaster/cpasterplugin.cpp
View file @
ae7864f9
...
...
@@ -185,7 +185,9 @@ void CodepasterPlugin::post()
// Submit to codepaster
m_poster
=
new
CustomPoster
(
serverUrl
());
m_poster
=
new
CustomPoster
(
serverUrl
(),
m_settingsPage
->
copyToClipBoard
(),
m_settingsPage
->
displayOutput
());
// Copied from cpaster. Otherwise lineendings will screw up
if
(
!
data
.
contains
(
"
\r\n
"
))
{
...
...
src/plugins/cpaster/settingspage.h
View file @
ae7864f9
...
...
@@ -65,8 +65,8 @@ public:
QString
username
()
const
;
QUrl
serverUrl
()
const
;
bool
copyToClipBoard
()
const
;
bool
displayOutput
()
const
;
inline
bool
copyToClipBoard
()
const
{
return
m_copy
;
}
inline
bool
displayOutput
()
const
{
return
m_output
;
}
private:
Ui_SettingsPage
m_ui
;
...
...
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