[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[vidalia-svn] r1324: Lets be consistent with our slashes and backslashes. It look (trunk/src/config)
Author: hipplej
Date: 2006-10-09 06:07:08 -0400 (Mon, 09 Oct 2006)
New Revision: 1324
Modified:
trunk/src/config/torsettings.cpp
Log:
Lets be consistent with our slashes and backslashes. It looks weird to have "/torrc" appended to the end of a path in Windows.
Modified: trunk/src/config/torsettings.cpp
===================================================================
--- trunk/src/config/torsettings.cpp 2006-10-09 09:59:49 UTC (rev 1323)
+++ trunk/src/config/torsettings.cpp 2006-10-09 10:07:08 UTC (rev 1324)
@@ -131,7 +131,8 @@
QString
TorSettings::getTorrc()
{
- return value(SETTING_TORRC).toString();
+ return QDir::convertSeparators(
+ value(SETTING_TORRC).toString());
}
/** Sets the torrc that will be used when starting Tor.