I would also suggest you to use QPushButton::setFlat(true) if you are going to style buttons. If you don't do that the margins and positions of the button are not calculated properly in mac since it expect to have the special mac effect area around. You have a similar problem in QLineEdit you need to made a method call to avoid the blue highlight in mac.
There is also a bug in Qt 4.6 and you cannot style QComboBox in mac (you can but the results are very weird). The fonts have different pixel sizes for the same family size, so be carefull if you are doing multi platform applications specially when you have fixed size element with text on it.
Apart from that I don't remember any other big differences. You have crashes that only happens in mac or in windows and something fancy drawing effects if you are doing very complex stuff. Normally the crashes are related to internal Qt code, there are some things that are wrong but they work in on OS and you don't realize the problem till it crash in mac or Linux.
If you are using QGraphicsView in mac be carefull if that view is into an scroll area. For some reason Qt has a bug and sometimes it draws the QGraphicsView outside the window when you scroll the are that contains it.