@@ -262,28 +262,28 @@ int main(int argc,char **argv)
262
262
// setup the non-default configuration options
263
263
264
264
// we need a place to put intermediate files
265
- Config_getString (" OUTPUT_DIRECTORY" )=" /tmp/doxygen" ;
265
+ Config_getString (OUTPUT_DIRECTORY)=" /tmp/doxygen" ;
266
266
// disable html output
267
- Config_getBool (" GENERATE_HTML" )=FALSE ;
267
+ Config_getBool (GENERATE_HTML)=FALSE ;
268
268
// disable latex output
269
- Config_getBool (" GENERATE_LATEX" )=FALSE ;
269
+ Config_getBool (GENERATE_LATEX)=FALSE ;
270
270
// be quiet
271
- Config_getBool (" QUIET" )=TRUE ;
271
+ Config_getBool (QUIET)=TRUE ;
272
272
// turn off warnings
273
- Config_getBool (" WARNINGS" )=FALSE ;
274
- Config_getBool (" WARN_IF_UNDOCUMENTED" )=FALSE ;
275
- Config_getBool (" WARN_IF_DOC_ERROR" )=FALSE ;
273
+ Config_getBool (WARNINGS)=FALSE ;
274
+ Config_getBool (WARN_IF_UNDOCUMENTED)=FALSE ;
275
+ Config_getBool (WARN_IF_DOC_ERROR)=FALSE ;
276
276
// Extract as much as possible
277
- Config_getBool (" EXTRACT_ALL" )=TRUE ;
278
- Config_getBool (" EXTRACT_STATIC" )=TRUE ;
279
- Config_getBool (" EXTRACT_PRIVATE" )=TRUE ;
280
- Config_getBool (" EXTRACT_LOCAL_METHODS" )=TRUE ;
277
+ Config_getBool (EXTRACT_ALL)=TRUE ;
278
+ Config_getBool (EXTRACT_STATIC)=TRUE ;
279
+ Config_getBool (EXTRACT_PRIVATE)=TRUE ;
280
+ Config_getBool (EXTRACT_LOCAL_METHODS)=TRUE ;
281
281
// Extract source browse information, needed
282
282
// to make doxygen gather the cross reference info
283
- Config_getBool (" SOURCE_BROWSER" )=TRUE ;
283
+ Config_getBool (SOURCE_BROWSER)=TRUE ;
284
284
285
285
// set the input
286
- Config_getList (" INPUT" ).append (argv[1 ]);
286
+ Config_getList (INPUT).append (argv[1 ]);
287
287
288
288
// check and finialize the configuration
289
289
checkConfiguration ();
0 commit comments