Edit configuration file from within wallet
This commit is contained in:
parent
1264546def
commit
dc3f49bad7
@ -374,6 +374,15 @@ void openDebugLogfile()
|
||||
QDesktopServices::openUrl(QUrl::fromLocalFile(boostPathToQString(pathDebug)));
|
||||
}
|
||||
|
||||
void openConfigfile()
|
||||
{
|
||||
boost::filesystem::path pathConfig = GetConfigFile();
|
||||
|
||||
/* Open darkcoin.conf with the associated application */
|
||||
if (boost::filesystem::exists(pathConfig))
|
||||
QDesktopServices::openUrl(QUrl::fromLocalFile(boostPathToQString(pathConfig)));
|
||||
}
|
||||
|
||||
ToolTipToRichTextFilter::ToolTipToRichTextFilter(int size_threshold, QObject *parent) :
|
||||
QObject(parent), size_threshold(size_threshold)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user