Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 11423
Collapse All | Expand All

(-)licq/plugins/qt-gui-1.2.0/src/awaymsgdlg.cpp (+7 lines)
Lines 167-172 AwayMsgDlg::~AwayMsgDlg() Link Here
167
  emit done();
167
  emit done();
168
}
168
}
169
169
170
// Since QT3.1 final somehow this qdialog does not accept() the 
171
// closeEvent, so we force it to do so :)
172
void AwayMsgDlg::closeEvent(QCloseEvent *e)
173
{
174
	e->accept();
175
}
176
170
void AwayMsgDlg::slot_hints()
177
void AwayMsgDlg::slot_hints()
171
{
178
{
172
  QString h = tr(hints);
179
  QString h = tr(hints);
(-)licq/plugins/qt-gui-1.2.0/src/awaymsgdlg.h (+3 lines)
Lines 14-19 public: Link Here
14
  AwayMsgDlg(QWidget *parent = 0);
14
  AwayMsgDlg(QWidget *parent = 0);
15
  ~AwayMsgDlg();
15
  ~AwayMsgDlg();
16
  void SelectAutoResponse(unsigned short status);
16
  void SelectAutoResponse(unsigned short status);
17
	
18
private:
19
	void closeEvent(QCloseEvent *);
17
20
18
protected:
21
protected:
19
  MLEditWrap *mleAwayMsg;
22
  MLEditWrap *mleAwayMsg;

Return to bug 11423