vnote/vdirectorytree.cpp
Le Tan d8c5114c1b read/write the info about notebooks
Use QSettings to store notebooks info in INI format.

Signed-off-by: Le Tan <tamlokveer@gmail.com>
2016-10-02 13:38:05 +08:00

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;
}