HI,
as you can see in image
promote.JPG
you can specify namespace for class name and path for include.
If you check "Global Include" uic generates
#include <ns/mybutton.h>
#include <ns/mybutton.h>
To copy to clipboard, switch view to plain text mode
instead of
#include "ns/mybutton.h"
#include "ns/mybutton.h"
To copy to clipboard, switch view to plain text mode
this is the output in "ui_Widget.h"
#include "ns/mybutton.h"
...
class Ui_Widget
{
public:
...
Ns::MyButton *openFileButton;
...
#include "ns/mybutton.h"
...
class Ui_Widget
{
public:
...
Ns::MyButton *openFileButton;
...
To copy to clipboard, switch view to plain text mode
Bookmarks