Possible Duplicate:
What is this weird colon-member syntax in the constructor?
I see it everywhere in constructors in Qt applications, but I don't know what it's called. I'm trying to find docs about it.
Browser::Browser(QTextBrowser& textBrowser, QObject* parent /*= 0*/)
: // <- What
m_textBrowser(textBrowser), // <- is
QObject(parent) // <- this stuff?
{
}
I apologize for my newbness.