diff options
Diffstat (limited to 'languages/ada/problemreporter.cpp')
-rw-r--r-- | languages/ada/problemreporter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/languages/ada/problemreporter.cpp b/languages/ada/problemreporter.cpp index 66966f33..19588b66 100644 --- a/languages/ada/problemreporter.cpp +++ b/languages/ada/problemreporter.cpp @@ -88,7 +88,7 @@ ProblemReporter::ProblemReporter( AdaSupportPart* part, TQWidget* parent, const addColumn( i18n("File") ); addColumn( i18n("Line") ); //addColumn( i18n("Column") ); - setAllColumnsShowFocus( TRUE ); + setAllColumnsShowFocus( true ); m_timer = new TQTimer( this ); @@ -246,7 +246,7 @@ void ProblemReporter::configure() kdDebug() << "ProblemReporter::configure()" << endl; TDEConfig* config = kapp->config(); config->setGroup( "General Options" ); - m_active = config->readBoolEntry( "EnableAdaBgParser", TRUE ); + m_active = config->readBoolEntry( "EnableAdaBgParser", true ); m_delay = config->readNumEntry( "BgParserDelay", 500 ); } |