summaryrefslogtreecommitdiffstats
path: root/collectiondatesview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'collectiondatesview.cpp')
-rw-r--r--collectiondatesview.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/collectiondatesview.cpp b/collectiondatesview.cpp
index 17856c7..83a7c3f 100644
--- a/collectiondatesview.cpp
+++ b/collectiondatesview.cpp
@@ -4,6 +4,7 @@
#include <QDate>
#include "collectiondatesview.h"
+#include "copydialog.h"
CollectionDatesView::CollectionDatesView(QWidget *parent) : CollectionWidget(parent){
}
@@ -77,3 +78,8 @@ void CollectionDatesView::populate(){
}
enableSorting(Qt::DescendingOrder);
}
+
+void CollectionDatesView::copyTo(){
+ CopyDialog *cdlg = new CopyDialog(this);
+ cdlg->show();
+}