He meant that you can't do this:
Qt Code:
  1. void Button::apasat()
  2. {
  3. MyWidget::verifica(y,x);
  4. }
To copy to clipboard, switch view to plain text mode 

You need to create an object of type MyWidget, something like this:
Qt Code:
  1. MyWidget obj; //create an instance of MyWidget class
  2. obj.verifica(); // run the member function;
To copy to clipboard, switch view to plain text mode 

An if MyWidget is an GUI widget you might want to allocate memory on the heap for objects, like this:
Qt Code:
  1. MyWidget *ptr = new MyWidget(parent); //alocate with "new" and give a parent
  2. ptr->verifica(); // call member function with pointer
To copy to clipboard, switch view to plain text mode 

If you don't understand take at least a tutorial of c++ first, and than a Qt one (or Qt examples), but i strongly recommend a book.