mirror of
https://gitee.com/vnotex/vnote.git
synced 2025-07-05 05:49:53 +08:00

Use QSettings to store notebooks info in INI format. Signed-off-by: Le Tan <tamlokveer@gmail.com>
13 lines
252 B
C++
13 lines
252 B
C++
#include <QtGui>
|
|
#include "vdirectorytree.h"
|
|
|
|
VDirectoryTree::VDirectoryTree(QWidget *parent) : QTreeWidget(parent)
|
|
{
|
|
}
|
|
|
|
void VDirectoryTree::setTreePath(const QString& path)
|
|
{
|
|
treePath = path;
|
|
qDebug() << "set directory tree path:" << path;
|
|
}
|