Charles Samuels wrote: > > I'de like to quickly propose a ... > > KURL::operator QString() const { return url(); } Please don't do that. This can lead to nasty bugs and strange behavior. Guess why the STL string template doesn't have an operator const char* , but rather the method c_str() ;) Just MHO, Werner