@ -2493,7 +2493,7 @@ bool tork::noSpecialProcessing(const TDEConfigSkeletonItem* it, TQTextStream &ts
if ( ( * it ) . name ( ) = = " HashedControlPassword " ) {
if ( ! TorkConfig : : hashedControlPassword ( ) . isEmpty ( ) ) {
TQString hash = hashPassword ( TorkConfig : : hashedControlPassword ( ) );
TQString hash = hashPassword ( TorkConfig : : hashedControlPassword ( ) .latin1 ( ) );
if ( ! hash . isEmpty ( ) )
ts < < " HashedControlPassword 16: " < < hash < < " \n " ;
}
@ -3053,7 +3053,7 @@ void tork::receivedOutput(KProcIO *)
message_t * msg = & _tork_messages [ i ] ;
if ( item2 . contains ( msg - > logmessage ) ) {
if ( ( * this . * ( msg - > pt2Member ) ) ( ) ) {
strncpy ( msg - > torsaid , item2 ,249 ) ;
strncpy ( msg - > torsaid , item2 .latin1 ( ) , 249 ) ;
showWarning ( msg - > state , msg - > headline , item2 , msg - > body , msg - > type ,
msg - > icon , msg - > always , msg - > showstopper ) ;
}
@ -3066,7 +3066,7 @@ void tork::receivedOutput(KProcIO *)
if ( item2 . contains ( msg - > logquestion ) ) {
if ( ( * this . * ( msg - > pt2Member2 ) ) ( ) ) {
( * this . * msg - > silentAction ) ( ) ;
strncpy ( msg - > torsaid , item2 ,249 ) ;
strncpy ( msg - > torsaid , item2 .latin1 ( ) , 249 ) ;
askQuestion ( msg - > state , msg - > headline , msg - > torsaid , msg - > body ,
msg - > question , msg - > pt2Member , msg - > type , msg - > icon ,
msg - > persistent , msg - > showstopper ) ;
@ -3091,7 +3091,7 @@ void tork::infoUpdated(const TQString &type, const TQString &summary, const TQSt
message_t * msg = & _tork_messages [ i ] ;
if ( summary . contains ( msg - > logmessage ) ) {
if ( ( * this . * ( msg - > pt2Member ) ) ( ) ) {
strncpy ( msg - > torsaid , summary ,249 ) ;
strncpy ( msg - > torsaid , summary .latin1 ( ) , 249 ) ;
showWarning ( msg - > state , msg - > headline , summary , msg - > body ,
msg - > type , msg - > icon , msg - > always , msg - > showstopper ) ;
}
@ -3104,7 +3104,7 @@ void tork::infoUpdated(const TQString &type, const TQString &summary, const TQSt
if ( summary . contains ( msg - > logquestion ) ) {
if ( ( * this . * ( msg - > pt2Member2 ) ) ( ) ) {
( * this . * msg - > silentAction ) ( ) ;
strncpy ( msg - > torsaid , summary ,249 ) ;
strncpy ( msg - > torsaid , summary .latin1 ( ) , 249 ) ;
askQuestion ( msg - > state , msg - > headline , msg - > torsaid , msg - > body ,
msg - > question , msg - > pt2Member , msg - > type , msg - > icon ,
msg - > persistent , msg - > showstopper ) ;
@ -3604,7 +3604,7 @@ void tork::showWarning( display_status_t &msg, const TQString &headline,const TQ
m_toolTipShowing = true ;
m_msg = & msg ;
m_tooltip = new KDE : : PopupMessage ( statusBar ( ) , m_statusInfo , 40000 , type ) ;
m_tooltip = new KDE : : PopupMessage ( statusBar ( ) , m_statusInfo , 40000 , type . utf8 ( ) ) ;
TQString text = i18n ( " <b>%1</b> " ) . arg ( headline ) ;
text + = TQString ( " <br> " ) + i18n ( " <b>Message: </b> %1 " ) . arg ( torsaid ) ;
text + = TQString ( " <br> " ) + i18n ( " <b>This means: </b> %1 " ) . arg ( thismeans ) ;
@ -3666,7 +3666,7 @@ void tork::askQuestion(display_status_t &msg, const TQString &headline,const TQS
m_persistent = persistent ;
m_pt2Func = pt2Func ;
m_tooltip = new KDE : : PopupMessage ( statusBar ( ) , m_statusInfo , 40000 , type ) ;
m_tooltip = new KDE : : PopupMessage ( statusBar ( ) , m_statusInfo , 40000 , type . utf8 ( ) ) ;
TQString text = i18n ( " <b>%1</b> " ) . arg ( headline ) ;
text + = TQString ( " <br> " ) + i18n ( " <b>Message: </b> %1 " ) . arg ( torsaid ) ;
text + = TQString ( " <br> " ) + i18n ( " <b>Reason: </b> %1 " ) . arg ( body ) ;
@ -4075,7 +4075,7 @@ void tork::processWarning(const TQString& type, const TQString& text)
message_t * msg = & _tork_messages [ i ] ;
if ( TQString ( msg - > logmessage ) . contains ( type ) ) {
if ( ( * this . * ( msg - > pt2Member ) ) ( ) ) {
strncpy ( msg - > torsaid , text ,249 ) ;
strncpy ( msg - > torsaid , text .latin1 ( ) , 249 ) ;
showWarning ( msg - > state , msg - > headline , msg - > torsaid ,
msg - > body , msg - > type , msg - > icon , msg - > always , msg - > showstopper ) ;
m_view - > infoUpdated ( " TorK " , msg - > headline , msg - > body ) ;
@ -4096,7 +4096,7 @@ void tork::processQuestion(const TQString& type, const TQString& text)
if ( ( * this . * ( msg - > pt2Member2 ) ) ( ) ) {
if ( TQString ( msg - > logquestion ) . contains ( type ) ) {
( * this . * msg - > silentAction ) ( ) ;
strncpy ( msg - > torsaid , tmptext ,249 ) ;
strncpy ( msg - > torsaid , tmptext .latin1 ( ) , 249 ) ;
askQuestion ( msg - > state , msg - > headline , msg - > torsaid , msg - > body ,
msg - > question , msg - > pt2Member , msg - > type , msg - > icon ,
msg - > persistent , msg - > showstopper ) ;