~kile/kile/livepreview-xenial

« back to all changes in this revision

Viewing changes to src/widgets/structurewidget.cpp

  • Committer: Package Import Robot
  • Author(s): Prasad Murthy
  • Date: 2013-01-24 19:03:35 UTC
  • mfrom: (1.1.24)
  • Revision ID: package-import@ubuntu.com-20130124190335-29sj32fdx0d2kcmw
Tags: 1:2.1.3-0ubuntu1
* New upstream release
* Drop kubuntu_02_disable_embedded_kbibtex.diff as kbibtex is now usable with kde4
* Add kbibtex to suggests
* Change the Vcs links to the Ubuntu bzr branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
112
112
 
113
113
void StructureViewItem::setItemEntry()
114
114
{
115
 
        setText(0, m_title + " (" + i18n("line") + ' ' + QString::number(m_line) + ')');
 
115
        setText(0, i18nc("structure view entry: title (line)", "%1 (line %2)", m_title, QString::number(m_line)));
 
116
        setToolTip(0, text(0));
116
117
}
117
118
 
118
119
void StructureViewItem::setLabel(const QString &label)