summaryrefslogtreecommitdiffstats
path: root/tdeioslave/smtp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-21 00:00:26 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-21 00:00:26 +0900
commit4484e51ca69d3080fac8692a7a203c49dc47ab1e (patch)
treec637c9712454e1f41dcef3f76fc02aed764ce91b /tdeioslave/smtp
parenta4241b7911d2e0b36edfb02f616b8b282050c0ec (diff)
downloadtdebase-4484e51ca69d3080fac8692a7a203c49dc47ab1e.tar.gz
tdebase-4484e51ca69d3080fac8692a7a203c49dc47ab1e.zip
Replace auto_ptr
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tdeioslave/smtp')
-rw-r--r--tdeioslave/smtp/smtp.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/tdeioslave/smtp/smtp.cpp b/tdeioslave/smtp/smtp.cpp
index 00dff3684..ba009c1c5 100644
--- a/tdeioslave/smtp/smtp.cpp
+++ b/tdeioslave/smtp/smtp.cpp
@@ -71,7 +71,6 @@ using KioSMTP::TransactionState;
#include <tqcstring.h>
#include <memory>
-using std::auto_ptr;
#include <ctype.h>
#include <stdlib.h>
@@ -446,8 +445,8 @@ void SMTPProtocol::queueCommand( int type ) {
}
bool SMTPProtocol::execute( int type, TransactionState * ts ) {
- auto_ptr<Command> cmd( Command::createSimpleCommand( type, this ) );
- kdFatal( !cmd.get(), 7112 ) << "Command::createSimpleCommand( " << type << " ) returned null!" << endl;
+ std::unique_ptr<Command> cmd( Command::createSimpleCommand( type, this ) );
+ kdFatal( !cmd, 7112 ) << "Command::createSimpleCommand( " << type << " ) returned null!" << endl;
return execute( cmd.get(), ts );
}