diff options
| author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 10:00:36 -0600 | 
|---|---|---|
| committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 10:00:36 -0600 | 
| commit | 1fffbdafa12271a1a635caf46777fb8acfb6f31b (patch) | |
| tree | 707785bd058e254fd865ca30ed35f37f206aebbc /quanta/utility/qpevents.cpp | |
| parent | 2b0e1de2ffcca7bb93f1fd8ddd32f74041d0d076 (diff) | |
| download | tdewebdev-1fffbdafa12271a1a635caf46777fb8acfb6f31b.tar.gz tdewebdev-1fffbdafa12271a1a635caf46777fb8acfb6f31b.zip | |
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit 2b0e1de2ffcca7bb93f1fd8ddd32f74041d0d076.
Diffstat (limited to 'quanta/utility/qpevents.cpp')
| -rw-r--r-- | quanta/utility/qpevents.cpp | 16 | 
1 files changed, 8 insertions, 8 deletions
| diff --git a/quanta/utility/qpevents.cpp b/quanta/utility/qpevents.cpp index 81db90c2..b4d43f48 100644 --- a/quanta/utility/qpevents.cpp +++ b/quanta/utility/qpevents.cpp @@ -17,7 +17,7 @@  //qt includes  #include <tqdatetime.h>  #include <tqfile.h> -#include <textstream.h> +#include <tqtextstream.h>  //kde includes  #include <kapplication.h> @@ -85,11 +85,11 @@ void QPEvents::slotEventHappened(const TQString& name, const TQString& argument1        EventAction ev = *it;        if (ev.type == EventAction::Internal)        { -        if (KMessageBox::warningContinueCancel(0L, i18n("<qt>An internal action (<i>%1</i>) associated with an event (<i>%2</i>) will be executed.  Do you want to allow the execution of this action?</qt>").arg(ev.action).arg(name), i18n("Event Triggered"), i18n("Execute"), "Warn about internal actions") == KMessageBox::Cancel) +        if (KMessageBox::warningContinueCancel(0L, i18n("<qt>An internal action (<i>%1</i>) associated with an event (<i>%2</i>) will be executed.  Do you want to allow the execution of this action?</qt>").tqarg(ev.action).tqarg(name), i18n("Event Triggered"), i18n("Execute"), "Warn about internal actions") == KMessageBox::Cancel)            return;        } else        { -        if (KMessageBox::warningContinueCancel(0L, i18n("<qt>An external action (<i>%1</i>) associated with an event (<i>%2</i>) will be executed.  Do you want to allow the execution of this action?</qt>").arg(ev.action).arg(name), i18n("Event Triggered"), i18n("Execute"), "Warn about external actions") == KMessageBox::Cancel) +        if (KMessageBox::warningContinueCancel(0L, i18n("<qt>An external action (<i>%1</i>) associated with an event (<i>%2</i>) will be executed.  Do you want to allow the execution of this action?</qt>").tqarg(ev.action).tqarg(name), i18n("Event Triggered"), i18n("Execute"), "Warn about external actions") == KMessageBox::Cancel)            return;        }        KURL url = KURL::fromPathOrURL(argument1); @@ -221,7 +221,7 @@ void QPEvents::slotEventHappened(const TQString& name, const TQString& argument1      }    }    if (!m_eventNames.contains(name)) -    KMessageBox::sorry(0L, i18n("<qt>Unsupported event <b>%1</b>.</qt>").arg(name), i18n("Event Handling Error")); +    KMessageBox::sorry(0L, i18n("<qt>Unsupported event <b>%1</b>.</qt>").tqarg(name), i18n("Event Handling Error"));  }  bool QPEvents::handleEvent(const EventAction& ev) @@ -294,7 +294,7 @@ bool QPEvents::handleEvent(const EventAction& ev)          TQTextStream stream(&file);          stream.setEncoding(TQTextStream::UnicodeUTF8);          //Note: the log text should not be translated. -        TQString s = TQDateTime::currentDateTime().toString(Qt::ISODate) + ": "; +        TQString s = TQDateTime::tqcurrentDateTime().toString(Qt::ISODate) + ": ";          s.append( "Event : " + m_eventName + " : ");          s.append( "Action: " + ev.action + " : ");          if (ev.arguments[1] == "full") @@ -309,11 +309,11 @@ bool QPEvents::handleEvent(const EventAction& ev)        }        if (!result)        { -        KMessageBox::sorry(0L, i18n("<qt>Logging failed. Check that you have write access to <i>%1</i>.").arg(url.path())); +        KMessageBox::sorry(0L, i18n("<qt>Logging failed. Check that you have write access to <i>%1</i>.").tqarg(url.path()));          return false;        }      } else -      KMessageBox::sorry(0L, i18n("<qt>Unsupported internal event action : <b>%1</b>.</qt>").arg(ev.action)); +      KMessageBox::sorry(0L, i18n("<qt>Unsupported internal event action : <b>%1</b>.</qt>").tqarg(ev.action));    } else    if (ev.type == EventAction::External)    { @@ -336,7 +336,7 @@ bool QPEvents::handleEvent(const EventAction& ev)            {              action->activate();            } else -            KMessageBox::sorry(0L, i18n("<qt>The <b>%1</b> script action was not found on your system.</qt>").arg(name), i18n("Action Execution Error")); +            KMessageBox::sorry(0L, i18n("<qt>The <b>%1</b> script action was not found on your system.</qt>").tqarg(name), i18n("Action Execution Error"));        }  else        KMessageBox::sorry(0L, i18n("Unsupported external event action."));    } else | 
