From kde-commits Fri Apr 29 19:43:38 2005 From: Christoph Cullmann Date: Fri, 29 Apr 2005 19:43:38 +0000 To: kde-commits Subject: kdelibs/kate/part Message-Id: <20050429194338.98A15629 () office ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=111480383225829 CVS commit by cullmann: remember indentation markers, default setting: off M +10 -10 kateconfig.cpp 1.74 --- kdelibs/kate/part/kateconfig.cpp #1.73:1.74 @@ -1062,5 +1062,5 @@ void KateRendererConfig::readConfig (KCo setWordWrapMarker (config->readBoolEntry("Word Wrap Marker", false )); -// setShowIndentationLines (config->readBoolEntry( "Show Indentation Lines", true)); + setShowIndentationLines (config->readBoolEntry( "Show Indentation Lines", false)); configEnd (); @@ -1071,7 +1071,7 @@ void KateRendererConfig::writeConfig (KC config->writeEntry ("Schema", KateFactory::self()->schemaManager()->name(schema())); - config->writeEntry( "Word Wrap Marker", wordWrapMarker() ); + config->writeEntry("Word Wrap Marker", wordWrapMarker() ); -// config->writeEntry("Show Indentation Lines", showIndentationLines()); + config->writeEntry("Show Indentation Lines", showIndentationLines()); }