From f5cf4010827233c5a74cb05ca898f2577a3efd09 Mon Sep 17 00:00:00 2001
From: Sebastião Guerra <sebastiao.luiz.guerra@gmail.com>
Date: Sun, 20 Sep 2026 18:26:13 -0300
Subject: Replace zero pointer constants with nullptr
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Signed-off-by: Sebastião Guerra <sebastiao.luiz.guerra@gmail.com>
---
 keep/app/keepmainwindow.cpp | 2 +-
 keep/app/main.cpp           | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/keep/app/keepmainwindow.cpp b/keep/app/keepmainwindow.cpp
index b23e102..f635c85 100644
--- a/keep/app/keepmainwindow.cpp
+++ b/keep/app/keepmainwindow.cpp
@@ -159,7 +159,7 @@ void KeepMainWindow::slotConfigure()
  
 	//TDEConfigDialog didn't find an instance of this dialog, so lets create it : 
 	TDEConfigDialog* dialog = new TDEConfigDialog( this, "settings", KeepSettings::self() ); 
-	GeneralConfigView* generalConfigView =  new GeneralConfigView( 0, "generalConfigView" ); 
+	GeneralConfigView* generalConfigView =  new GeneralConfigView( nullptr, "generalConfigView" );
  
 	dialog->addPage( generalConfigView, i18n("General"), "general" ); 
  
diff --git a/keep/app/main.cpp b/keep/app/main.cpp
index 3b32f04..6fa87e1 100644
--- a/keep/app/main.cpp
+++ b/keep/app/main.cpp
@@ -50,7 +50,7 @@ int main(int argc, char **argv)
 	TDEUniqueApplication app;
 	app.disableSessionManagement();
 
-	KeepMainWindow *keep = new KeepMainWindow( 0, "keep" );
+	KeepMainWindow *keep = new KeepMainWindow( nullptr, "keep" );
 	keep->show();
 	app.setMainWidget( keep );
 
-- 
cgit v1.2.3

