~ubuntu-branches/ubuntu/quantal/kate/quantal-proposed

« back to all changes in this revision

Viewing changes to kate/plugins/katesql/outputstylewidget.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2011-12-14 13:28:06 UTC
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: package-import@ubuntu.com-20111214132806-aa2uf6ri5w2p8ak3
Tags: upstream-4.7.90
ImportĀ upstreamĀ versionĀ 4.7.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
103
103
  connect(italicCheckBox, SIGNAL(toggled(bool)), this, SLOT(slotChanged()));
104
104
  connect(underlineCheckBox, SIGNAL(toggled(bool)), this, SLOT(slotChanged()));
105
105
  connect(strikeOutCheckBox, SIGNAL(toggled(bool)), this, SLOT(slotChanged()));
106
 
  connect(foregroundColorButton, SIGNAL(changed(const QColor&)), this, SLOT(slotChanged()));
107
 
  connect(backgroundColorButton, SIGNAL(changed(const QColor&)), this, SLOT(slotChanged()));
 
106
  connect(foregroundColorButton, SIGNAL(changed(QColor)), this, SLOT(slotChanged()));
 
107
  connect(backgroundColorButton, SIGNAL(changed(QColor)), this, SLOT(slotChanged()));
108
108
 
109
109
  return item;
110
110
}