File tree 1 file changed +0
-18
lines changed
1 file changed +0
-18
lines changed Original file line number Diff line number Diff line change @@ -60,24 +60,6 @@ static QString findWinDefaultConfigPath()
60
60
return temp;
61
61
}
62
62
63
- static QString findWinConfigPath (QString configFileName)
64
- {
65
- QString temp;
66
- QFileInfo localConfigInfo (findWinLocalConfigPath ().append (" /" ).append (configFileName));
67
- QFileInfo systemConfigInfo (findWinSystemConfigPath ().append (" /" ).append (configFileName));
68
- if (localConfigInfo.exists () && localConfigInfo.isWritable ())
69
- {
70
- temp = localConfigInfo.absoluteFilePath ();
71
- } else if (systemConfigInfo.exists () && systemConfigInfo.isWritable ())
72
- {
73
- temp = systemConfigInfo.absoluteFilePath ();
74
- } else
75
- {
76
- temp = findWinDefaultConfigPath ().append (" /" ).append (configFileName);
77
- }
78
-
79
- return temp;
80
- }
81
63
#endif
82
64
83
65
namespace PadderCommon {
You can’t perform that action at this time.
0 commit comments