예제 #1
0
void ShellSurface::setAppId(StringView id)
{
    if (m_appId != id) {
        m_appId = id.toStdString();
        emit appIdChanged();
    }
}
예제 #2
0
void ShellSurface::setTitle(StringView t)
{
    if (m_title != t) {
        m_title = t.toStdString();
        emit titleChanged();
        m_surface->setLabel(t);
    }
}