mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-24 08:34:08 +00:00
11 lines
245 B
C++
11 lines
245 B
C++
|
/* This file is (c) 2008-2018 Abs62
|
||
|
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
|
||
|
|
||
|
#include <QDropEvent>
|
||
|
#include "treeview.hh"
|
||
|
|
||
|
void TreeView::dropEvent( QDropEvent * event )
|
||
|
{
|
||
|
QTreeView::dropEvent( event );
|
||
|
}
|