Hey guys,

I've subclassed the QLineEdit the following way:

Qt Code:
  1. class qsSearchEdit : public QLineEdit, public qsPrivatable
  2. {
  3. Q_OBJECT
  4. private:
  5. QS_DECLARE_PRIVATE(qsSearchEdit);
  6.  
  7. public:
  8. qsSearchEdit(QWidget * parent = 0);
  9.  
  10. protected: // Events
  11. void paintEvent(QPaintEvent * event) { }
  12. };
To copy to clipboard, switch view to plain text mode 

For some reason, even when drawing nothing in the paintEvent, I still get a blue halo on MacOSX when the line edit has focus.

Can we get rid of this?