I'm using qwt-6.2-git and am getting a warning "Type conversion already registered from type QString to type QwtText" in the terminal when doing the following:

Qt Code:
  1. QString myString("hello");
  2. QwtText myText(myString);
To copy to clipboard, switch view to plain text mode 

I can't find anything in my code that's registering a QString to QwtText.

Is there a way I can turn off this warning or understand what's causing it?