-rw-r--r-- | noncore/settings/aqpkg/datamgr.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/noncore/settings/aqpkg/datamgr.cpp b/noncore/settings/aqpkg/datamgr.cpp index 67f90a3..93daaba 100644 --- a/noncore/settings/aqpkg/datamgr.cpp +++ b/noncore/settings/aqpkg/datamgr.cpp | |||
@@ -135,51 +135,51 @@ void DataManager :: loadServers() | |||
135 | Destination *d = new Destination( alias, path ); | 135 | Destination *d = new Destination( alias, path ); |
136 | bool linkToRoot = true; | 136 | bool linkToRoot = true; |
137 | #ifdef QWS | 137 | #ifdef QWS |
138 | QString key = alias; | 138 | QString key = alias; |
139 | key += "_linkToRoot"; | 139 | key += "_linkToRoot"; |
140 | linkToRoot = cfg.readBoolEntry( key, true ); | 140 | linkToRoot = cfg.readBoolEntry( key, true ); |
141 | #endif | 141 | #endif |
142 | d->linkToRoot( linkToRoot ); | 142 | d->linkToRoot( linkToRoot ); |
143 | 143 | ||
144 | destList.append( d ); | 144 | destList.append( d ); |
145 | } | 145 | } |
146 | else if ( lineStr.startsWith( "option" ) || lineStr.startsWith( "#option" ) ) | 146 | else if ( lineStr.startsWith( "option" ) || lineStr.startsWith( "#option" ) ) |
147 | { | 147 | { |
148 | char type[20]; | 148 | char type[20]; |
149 | char val[100]; | 149 | char val[100]; |
150 | sscanf( lineStr, "%*[^ ] %s %s", type, val ); | 150 | sscanf( lineStr, "%*[^ ] %s %s", type, val ); |
151 | if ( stricmp( type, "http_proxy" ) == 0 ) | 151 | if ( qstricmp( type, "http_proxy" ) == 0 ) |
152 | { | 152 | { |
153 | httpProxy = val; | 153 | httpProxy = val; |
154 | if ( lineStr.startsWith( "#" ) ) | 154 | if ( lineStr.startsWith( "#" ) ) |
155 | httpProxyEnabled = false; | 155 | httpProxyEnabled = false; |
156 | else | 156 | else |
157 | httpProxyEnabled = true; | 157 | httpProxyEnabled = true; |
158 | } | 158 | } |
159 | if ( stricmp( type, "ftp_proxy" ) == 0 ) | 159 | if ( qstricmp( type, "ftp_proxy" ) == 0 ) |
160 | { | 160 | { |
161 | ftpProxy = val; | 161 | ftpProxy = val; |
162 | if ( lineStr.startsWith( "#" ) ) | 162 | if ( lineStr.startsWith( "#" ) ) |
163 | ftpProxyEnabled = false; | 163 | ftpProxyEnabled = false; |
164 | else | 164 | else |
165 | ftpProxyEnabled = true; | 165 | ftpProxyEnabled = true; |
166 | } | 166 | } |
167 | if ( stricmp( type, "proxy_username" ) == 0 ) | 167 | if ( qstricmp( type, "proxy_username" ) == 0 ) |
168 | proxyUsername = val; | 168 | proxyUsername = val; |
169 | if ( stricmp( type, "proxy_password" ) == 0 ) | 169 | if ( qstricmp( type, "proxy_password" ) == 0 ) |
170 | proxyPassword = val; | 170 | proxyPassword = val; |
171 | } | 171 | } |
172 | } | 172 | } |
173 | } | 173 | } |
174 | fclose( fp ); | 174 | fclose( fp ); |
175 | 175 | ||
176 | reloadServerData( ); | 176 | reloadServerData( ); |
177 | } | 177 | } |
178 | 178 | ||
179 | void DataManager :: reloadServerData( ) | 179 | void DataManager :: reloadServerData( ) |
180 | { | 180 | { |
181 | emit progressSetSteps( serverList.count() ); | 181 | emit progressSetSteps( serverList.count() ); |
182 | emit progressSetMessage( tr( "Reading configuration..." ) ); | 182 | emit progressSetMessage( tr( "Reading configuration..." ) ); |
183 | 183 | ||
184 | QString serverName; | 184 | QString serverName; |
185 | int i = 0; | 185 | int i = 0; |