mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-02-25 09:11:28 -05:00
fixed parenthesis problem with #ifdef that armed lupdate
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4897 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
2cdb36fda1
commit
fa31608e7b
@ -160,9 +160,11 @@ win32_program_files_folder()
|
||||
{
|
||||
return win32_get_folder_location(
|
||||
#if 0
|
||||
CSIDL_PROGRAM_FILES, QDir::rootPath() + "\\Program Files");
|
||||
CSIDL_PROGRAM_FILES,
|
||||
#else
|
||||
0,
|
||||
#endif
|
||||
0, QDir::rootPath() + "\\Program Files");
|
||||
QDir::rootPath() + "\\Program Files");
|
||||
}
|
||||
|
||||
/** Gets the location of the user's %APPDATA% folder. */
|
||||
@ -171,9 +173,11 @@ win32_app_data_folder()
|
||||
{
|
||||
return win32_get_folder_location(
|
||||
#if 0
|
||||
CSIDL_APPDATA, QDir::homePath() + "\\Application Data");
|
||||
CSIDL_APPDATA,
|
||||
#else
|
||||
0,
|
||||
#endif
|
||||
0, QDir::homePath() + "\\Application Data");
|
||||
QDir::homePath() + "\\Application Data");
|
||||
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user