コード例 #1
0
void pvdb::Example::SetText(const std::string& text)
{
  if (m_text != text)
  {
    m_text = text;
    m_signal_text_changed(this);
  }
}
コード例 #2
0
void ribi::ShinyButton::SetText(
  const std::string& text) noexcept
{
  if (text != m_text)
  {
    m_text = text;
    m_signal_text_changed();
  }
}
コード例 #3
0
ファイル: text.cpp プロジェクト: richelbilderbeek/CppTests
void Text::SetText(const std::string& text)
{
  m_text = text;
  m_signal_text_changed();
}