* use wstring in symbol and bookmark names * fixed setting apppath in windows includes * regard utf8 encoding in shared indexer commands * regard utf8 encoding in shared indexer status
21 lines
322 B
C++
21 lines
322 B
C++
#include "qt/view/graphElements/QtGraphNodeText.h"
|
|
|
|
QtGraphNodeText::QtGraphNodeText(const std::wstring& name)
|
|
{
|
|
setName(name);
|
|
}
|
|
|
|
QtGraphNodeText::~QtGraphNodeText()
|
|
{
|
|
}
|
|
|
|
bool QtGraphNodeText::isTextNode() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
void QtGraphNodeText::updateStyle()
|
|
{
|
|
setStyle(GraphViewStyle::getStyleOfTextNode());
|
|
}
|