File tree Expand file tree Collapse file tree 1 file changed +0
-18
lines changed
Expand file tree Collapse file tree 1 file changed +0
-18
lines changed Original file line number Diff line number Diff line change @@ -60,24 +60,6 @@ static QString findWinDefaultConfigPath()
6060 return temp;
6161}
6262
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- }
8163#endif
8264
8365namespace PadderCommon {
You can’t perform that action at this time.
0 commit comments