diff options
author | Michele Calgaro <[email protected]> | 2025-03-16 14:46:59 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2025-03-16 14:56:22 +0900 |
commit | 76c67c49ce863d214f4a365b443663597e4f6ff9 (patch) | |
tree | 7beed17146d738067d789bc12f7603249f4f8e73 /src/tdeiosvn | |
parent | 14c622e80a2f4e10689c9548f0b26e7b6e815cbf (diff) | |
download | tdesvn-76c67c49ce863d214f4a365b443663597e4f6ff9.tar.gz tdesvn-76c67c49ce863d214f4a365b443663597e4f6ff9.zip |
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/tdeiosvn')
-rw-r--r-- | src/tdeiosvn/tdeiolistener.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/tdeiosvn/tdeiolistener.cpp b/src/tdeiosvn/tdeiolistener.cpp index dc36588..287579d 100644 --- a/src/tdeiosvn/tdeiolistener.cpp +++ b/src/tdeiosvn/tdeiolistener.cpp @@ -125,7 +125,7 @@ void KioListener::contextNotify (const char * path,svn_wc_notify_action_t action case svn_wc_notify_copy: //copy break; case svn_wc_notify_delete: //delete - m_HasChanges = TRUE; + m_HasChanges = true; userstring = i18n( "D %1" ).arg( path ); break; case svn_wc_notify_restore : //restore @@ -147,11 +147,11 @@ void KioListener::contextNotify (const char * path,svn_wc_notify_action_t action userstring=i18n("Skipped %1.").arg( path ); break; case svn_wc_notify_update_delete: //update_delete - m_HasChanges = TRUE; + m_HasChanges = true; userstring=i18n( "D %1" ).arg( path ); break; case svn_wc_notify_update_add: //update_add - m_HasChanges = TRUE; + m_HasChanges = true; userstring=i18n( "A %1" ).arg( path ); break; case svn_wc_notify_update_update: //update_update @@ -163,7 +163,7 @@ void KioListener::contextNotify (const char * path,svn_wc_notify_action_t action && ((prop_state == svn_wc_notify_state_inapplicable) || (prop_state == svn_wc_notify_state_unknown) || (prop_state == svn_wc_notify_state_unchanged)))) { - m_HasChanges = TRUE; + m_HasChanges = true; if (kind == svn_node_file) { if (content_state == svn_wc_notify_state_conflicted) @@ -208,10 +208,10 @@ void KioListener::contextNotify (const char * path,svn_wc_notify_action_t action } } if (m_External) - m_External = FALSE; + m_External = false; break; case svn_wc_notify_update_external: //update_external - m_External = TRUE; + m_External = true; userstring = i18n("Fetching external item into %1." ).arg( path ); break; case svn_wc_notify_status_completed: //status_completed @@ -239,7 +239,7 @@ void KioListener::contextNotify (const char * path,svn_wc_notify_action_t action break; case svn_wc_notify_commit_postfix_txdelta: //commit_postfix_txdelta if (!m_FirstTxDelta) { - m_FirstTxDelta = TRUE; + m_FirstTxDelta = true; // check fullstops! userstring=i18n("Transmitting file data "); } else { |