This commit is contained in:
Martin Rotter 2014-09-29 07:42:14 +02:00
parent 49a6aec5b7
commit c831d4d615
3 changed files with 19 additions and 2 deletions

View File

@ -71,8 +71,8 @@ project(rssguard)
set(APP_NAME "RSS Guard") set(APP_NAME "RSS Guard")
set(APP_LOW_NAME "rssguard") set(APP_LOW_NAME "rssguard")
set(APP_VERSION "2.0.0.2") set(APP_VERSION "2.0.0.3")
set(FILE_VERSION "2,0,0,2") set(FILE_VERSION "2,0,0,3")
set(APP_AUTHOR "Martin Rotter") set(APP_AUTHOR "Martin Rotter")
set(APP_URL "http://bitbucket.org/skunkos/rssguard") set(APP_URL "http://bitbucket.org/skunkos/rssguard")
set(APP_URL_ISSUES "http://bitbucket.org/skunkos/rssguard/issues") set(APP_URL_ISSUES "http://bitbucket.org/skunkos/rssguard/issues")

View File

@ -1,4 +1,20 @@
<body> <body>
<center><h2>2.0.0.3</h2></center>
Fixed:
<ul>
<li>Fixed #76.</li>
</ul>
Added:
<ul>
</ul>
Changed:
<ul>
</ul>
<hr/>
<center><h2>2.0.0.2</h2></center> <center><h2>2.0.0.2</h2></center>
Fixed: Fixed:

View File

@ -565,6 +565,7 @@ void FeedsView::initializeContextMenuRecycleBin() {
m_contextMenuRecycleBin = new QMenu(tr("Context menu for recycle bin"), this); m_contextMenuRecycleBin = new QMenu(tr("Context menu for recycle bin"), this);
m_contextMenuRecycleBin->addActions(QList<QAction*>() << m_contextMenuRecycleBin->addActions(QList<QAction*>() <<
qApp->mainForm()->m_ui->m_actionRestoreRecycleBin << qApp->mainForm()->m_ui->m_actionRestoreRecycleBin <<
qApp->mainForm()->m_ui->m_actionRestoreSelectedMessagesFromRecycleBin <<
qApp->mainForm()->m_ui->m_actionEmptyRecycleBin); qApp->mainForm()->m_ui->m_actionEmptyRecycleBin);
} }