diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-05 12:06:15 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-04-05 12:24:24 +0900 |
commit | a40b1ca8095d92cbe5876207558663dcab6d1de2 (patch) | |
tree | 539043e03a12becf6c8d61d5ddbedd1e18309e62 /kate/snippets/plugin_katesnippets.cpp | |
parent | a1fb007a8776fef0131f829fbb5ff69a2a02bae6 (diff) | |
download | tdeaddons-a40b1ca8095d92cbe5876207558663dcab6d1de2.tar.gz tdeaddons-a40b1ca8095d92cbe5876207558663dcab6d1de2.zip |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kate/snippets/plugin_katesnippets.cpp')
-rw-r--r-- | kate/snippets/plugin_katesnippets.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kate/snippets/plugin_katesnippets.cpp b/kate/snippets/plugin_katesnippets.cpp index 356161f..540a8f8 100644 --- a/kate/snippets/plugin_katesnippets.cpp +++ b/kate/snippets/plugin_katesnippets.cpp @@ -61,7 +61,7 @@ KatePluginSnippetsView::KatePluginSnippetsView(Kate::MainWindow *w, TQWidget *do ); //</make connections> - lSnippets.setAutoDelete( TRUE ); // the list owns the objects + lSnippets.setAutoDelete( true ); // the list owns the objects config = new TDEConfig("katesnippetspluginrc"); readConfig(); |