Ejemplo n.º 1
0
void pvdb::Example::SetText(const std::string& text)
{
  if (m_text != text)
  {
    m_text = text;
    m_signal_text_changed(this);
  }
}
Ejemplo n.º 2
0
void ribi::ShinyButton::SetText(
  const std::string& text) noexcept
{
  if (text != m_text)
  {
    m_text = text;
    m_signal_text_changed();
  }
}
Ejemplo n.º 3
0
void Text::SetText(const std::string& text)
{
  m_text = text;
  m_signal_text_changed();
}