MINGW say...

\href_gui.cpp:46: error: declaration of `QStringList Href_Gui::GetUserC
onfig()' outside of class is not definition



Qt Code:
  1. QStringList Href_Gui::GetUserConfig();
  2. {
  3. return this->hrefconfisuser;
  4. }
To copy to clipboard, switch view to plain text mode 

i must transform so QStringList > QList??

Qt Code:
  1. QList Href_Gui::GetUserConfig();
  2. {
  3. return this->hrefconfisuser;
  4. }
To copy to clipboard, switch view to plain text mode