Mercurial > hg > sonic-visualiser
comparison document/Document.cpp @ 116:99d65ba33c88
* More useful status bar text -- show the current play time and the extents of
the visible area
* Add update-i18n.sh to update the i18n/ts and qm files -- I can't get qmake
to do the right thing now that the project file has been split up into
several project files
* Fix missing Q_OBJECTs, etc, reported by lupdate
* Update Russian translation from AlexandrE
author | Chris Cannam |
---|---|
date | Wed, 07 Mar 2007 17:07:02 +0000 |
parents | d25ea0c2af5c |
children | 8089a394829a |
comparison
equal
deleted
inserted
replaced
115:c9930ec7a3f9 | 116:99d65ba33c88 |
---|---|
641 View *view, | 641 View *view, |
642 Layer *layer) : | 642 Layer *layer) : |
643 m_d(d), | 643 m_d(d), |
644 m_view(view), | 644 m_view(view), |
645 m_layer(layer), | 645 m_layer(layer), |
646 m_name(d->tr("Add %1 Layer").arg(layer->objectName())), | 646 m_name(qApp->translate("Add %1 Layer").arg(layer->objectName())), |
647 m_added(false) | 647 m_added(false) |
648 { | 648 { |
649 } | 649 } |
650 | 650 |
651 Document::AddLayerCommand::~AddLayerCommand() | 651 Document::AddLayerCommand::~AddLayerCommand() |
689 View *view, | 689 View *view, |
690 Layer *layer) : | 690 Layer *layer) : |
691 m_d(d), | 691 m_d(d), |
692 m_view(view), | 692 m_view(view), |
693 m_layer(layer), | 693 m_layer(layer), |
694 m_name(d->tr("Delete %1 Layer").arg(layer->objectName())), | 694 m_name(qApp->translate("Delete %1 Layer").arg(layer->objectName())), |
695 m_added(true) | 695 m_added(true) |
696 { | 696 { |
697 } | 697 } |
698 | 698 |
699 Document::RemoveLayerCommand::~RemoveLayerCommand() | 699 Document::RemoveLayerCommand::~RemoveLayerCommand() |