[prev in list] [next in list] [prev in thread] [next in thread] 

List:       kde-commits
Subject:    [Konversation] ca294f9: speling fixes
From:       Dirk Mueller <mueller () kde ! org>
Date:       2010-07-01 13:26:48
Message-ID: 20100701132648.76DABBB5441 () projects ! kde ! org
[Download RAW message or body]

commit ca294f94f8ce61f031c49c0fe84e8528db6fc2ed
Author: Dirk Mueller <mueller@kde.org>
Date:   Mon Aug 11 16:26:54 2003 +0000

    speling fixes
    
    svn path=/trunk/kdeextragear-2/konversation/; revision=242119

diff --git a/TODO b/TODO
index 06efd11..850409c 100644
--- a/TODO
+++ b/TODO
@@ -5,7 +5,7 @@ berkus: Logrotate with timer or at shutdown, compress rotated logs
 
 Eisfuchs: Check KStringHandler::tagURLs for URL highlighting
 
-after beeing away a summary of lines with highlighting in its own window would be \
nice; a click on one line might jump to the according line in the \
channel/query-window  +after being away a summary of lines with highlighting in its \
own window would be nice; a click on one line might jump to the according line in the \
channel/query-window   additionally the text-search could offer a button "any \
highlight"   show the away-status somewhere; maybe with a gray background in the \
input line   additionally do some kind of marker to the lines that came in while \
                being away; maybe with a special colour of the timestamp 
diff --git a/konversation/eventsrc b/konversation/eventsrc
index f09cf86..73f60a5 100644
--- a/konversation/eventsrc
+++ b/konversation/eventsrc
@@ -50,13 +50,13 @@ Comment[sv]=Någon ändrade sitt smeknamn
 Comment[xx]=xxSomeone changed their nickxx
 default_presentation=0
 
-[dcc_incomming]
-Name=Incomming file
+[dcc_incoming]
+Name=Incoming file
 Name[da]=Indkommende fil
 Name[pt]=Ficheiro recebido
 Name[pt_BR]=Arquivo de entrada
 Name[sv]=Inkommande fil
-Name[xx]=xxIncomming filexx
+Name[xx]=xxIncoming filexx
 Comment=Someone wants to transmit a file to you over DCC
 Comment[da]=Nogen ønsker at transmittere en fil til dig over DCC
 Comment[pt]=Alguém quer transmitir um ficheiro através de DCC
diff --git a/konversation/inputfilter.cpp b/konversation/inputfilter.cpp
index 656671d..f4003e3 100644
--- a/konversation/inputfilter.cpp
+++ b/konversation/inputfilter.cpp
@@ -64,7 +64,7 @@ void InputFilter::parseLine(const QString &a_newLine)
     // Cut trailing parameter from string
     newLine=newLine.left(pos);
   }
-  // Remove all unneccessary white spaces to make parsing easier
+  // Remove all unnecessary white spaces to make parsing easier
   QString incomingLine=newLine.simplifyWhiteSpace();
 
   QString prefix(QString::null);
@@ -130,7 +130,7 @@ void InputFilter::parseClientCommand(const QString &prefix, const \
QString &comma  
       // ******
       KonversationApplication *konv_app = static_cast<KonversationApplication \
                *>(KApplication::kApplication());
-      QPtrList<IRCEvent> ctcp_events = konv_app->retreiveHooks (ON_CTCP);
+      QPtrList<IRCEvent> ctcp_events = konv_app->retrieveHooks (ON_CTCP);
       IRCEvent *e;
       for (e = ctcp_events.first(); e; e = ctcp_events.next())
       {
@@ -230,7 +230,7 @@ void InputFilter::parseClientCommand(const QString &prefix, const \
QString &comma  // Incoming file?
           if(dccType=="send")
           {
-            KNotifyClient::event("dcc_incomming");
+            KNotifyClient::event("dcc_incoming");
             emit addDccGet(sourceNick,dccArgument);
           }
           // Incoming file that shall be resumed?
@@ -273,7 +273,7 @@ void InputFilter::parseClientCommand(const QString &prefix, const \
QString &comma  {
       // ******
       KonversationApplication *konv_app = static_cast<KonversationApplication \
                *>(KApplication::kApplication());
-      QPtrList<IRCEvent> ctcp_events = konv_app->retreiveHooks (ON_MESSAGE);
+      QPtrList<IRCEvent> ctcp_events = konv_app->retrieveHooks (ON_MESSAGE);
       IRCEvent *e;
       for (e = ctcp_events.first(); e; e = ctcp_events.next())
       {
@@ -328,7 +328,7 @@ void InputFilter::parseClientCommand(const QString &prefix, const \
QString &comma  {
     // ******
     KonversationApplication *konv_app = static_cast<KonversationApplication \
                *>(KApplication::kApplication());
-    QPtrList<IRCEvent> ctcp_events = konv_app->retreiveHooks (ON_NOTICE);
+    QPtrList<IRCEvent> ctcp_events = konv_app->retrieveHooks (ON_NOTICE);
     IRCEvent *e;
     for (e = ctcp_events.first(); e; e = ctcp_events.next())
     {
@@ -395,7 +395,7 @@ void InputFilter::parseClientCommand(const QString &prefix, const \
QString &comma  
     // ******
     KonversationApplication *konv_app = static_cast<KonversationApplication \
                *>(KApplication::kApplication());
-    QPtrList<IRCEvent> ctcp_events = konv_app->retreiveHooks (ON_JOIN);
+    QPtrList<IRCEvent> ctcp_events = konv_app->retrieveHooks (ON_JOIN);
     IRCEvent *e;
     for (e = ctcp_events.first(); e; e = ctcp_events.next())
     {
@@ -441,7 +441,7 @@ void InputFilter::parseClientCommand(const QString &prefix, const \
QString &comma  {
     // ******
     KonversationApplication *konv_app = static_cast<KonversationApplication \
                *>(KApplication::kApplication());
-    QPtrList<IRCEvent> ctcp_events = konv_app->retreiveHooks (ON_KICK);
+    QPtrList<IRCEvent> ctcp_events = konv_app->retrieveHooks (ON_KICK);
     IRCEvent *e;
     for (e = ctcp_events.first(); e; e = ctcp_events.next())
     {
@@ -464,7 +464,7 @@ void InputFilter::parseClientCommand(const QString &prefix, const \
QString &comma  {
     // ******
     KonversationApplication *konv_app = static_cast<KonversationApplication \
                *>(KApplication::kApplication());
-    QPtrList<IRCEvent> ctcp_events = konv_app->retreiveHooks (ON_PART);
+    QPtrList<IRCEvent> ctcp_events = konv_app->retrieveHooks (ON_PART);
     IRCEvent *e;
     for (e = ctcp_events.first(); e; e = ctcp_events.next())
     {
@@ -490,7 +490,7 @@ void InputFilter::parseClientCommand(const QString &prefix, const \
QString &comma  {
     // ******
     KonversationApplication *konv_app = static_cast<KonversationApplication \
                *>(KApplication::kApplication());
-    QPtrList<IRCEvent> ctcp_events = konv_app->retreiveHooks (ON_QUIT);
+    QPtrList<IRCEvent> ctcp_events = konv_app->retrieveHooks (ON_QUIT);
     IRCEvent *e;
     for (e = ctcp_events.first(); e; e = ctcp_events.next())
     {
@@ -523,7 +523,7 @@ void InputFilter::parseClientCommand(const QString &prefix, const \
QString &comma  {
     // ******
     KonversationApplication *konv_app = static_cast<KonversationApplication \
                *>(KApplication::kApplication());
-    QPtrList<IRCEvent> ctcp_events = konv_app->retreiveHooks (ON_TOPIC);
+    QPtrList<IRCEvent> ctcp_events = konv_app->retrieveHooks (ON_TOPIC);
     IRCEvent *e;
     for (e = ctcp_events.first(); e; e = ctcp_events.next())
     {
@@ -545,7 +545,7 @@ void InputFilter::parseClientCommand(const QString &prefix, const \
QString &comma  {
     // ******
     KonversationApplication *konv_app = static_cast<KonversationApplication \
                *>(KApplication::kApplication());
-    QPtrList<IRCEvent> ctcp_events = konv_app->retreiveHooks (ON_MODE);
+    QPtrList<IRCEvent> ctcp_events = konv_app->retrieveHooks (ON_MODE);
     IRCEvent *e;
     for (e = ctcp_events.first(); e; e = ctcp_events.next())
     {
@@ -570,7 +570,7 @@ void InputFilter::parseClientCommand(const QString &prefix, const \
QString &comma  {
     // ******
     KonversationApplication *konv_app = static_cast<KonversationApplication \
                *>(KApplication::kApplication());
-    QPtrList<IRCEvent> ctcp_events = konv_app->retreiveHooks (ON_INVITE);
+    QPtrList<IRCEvent> ctcp_events = konv_app->retrieveHooks (ON_INVITE);
     IRCEvent *e;
     for (e = ctcp_events.first(); e; e = ctcp_events.next())
     {
@@ -634,7 +634,7 @@ void InputFilter::parseServerCommand(const QString &prefix, const \
QString &comma  {
       // ******
       KonversationApplication *konv_app = static_cast<KonversationApplication \
                *>(KApplication::kApplication());
-      QPtrList<IRCEvent> ctcp_events = konv_app->retreiveHooks (ON_NOTICE);
+      QPtrList<IRCEvent> ctcp_events = konv_app->retrieveHooks (ON_NOTICE);
       IRCEvent *e;
       for (e = ctcp_events.first(); e; e = ctcp_events.next())
       {
@@ -662,7 +662,7 @@ void InputFilter::parseServerCommand(const QString &prefix, const \
QString &comma  {
     // ******
     KonversationApplication *konv_app = static_cast<KonversationApplication \
                *>(KApplication::kApplication());
-    QPtrList<IRCEvent> ctcp_events = konv_app->retreiveHooks (ON_NUMERIC);
+    QPtrList<IRCEvent> ctcp_events = konv_app->retrieveHooks (ON_NUMERIC);
     IRCEvent *e;
     for (e = ctcp_events.first(); e; e = ctcp_events.next())
     {
@@ -1049,7 +1049,7 @@ void InputFilter::parseServerCommand(const QString &prefix, \
const QString &comma  default:
         {
           // All yet unknown messages go into the frontmost window without the
-          // preceeding nickname
+          // preceding nickname
           server->appendStatusMessage(command,parameterList.join(" ").section(' \
',1)+" "+trailing);  }
     }
diff --git a/konversation/konversationapplication.cpp \
b/konversation/konversationapplication.cpp index 08b9bb0..1bd6bac 100644
--- a/konversation/konversationapplication.cpp
+++ b/konversation/konversationapplication.cpp
@@ -795,7 +795,7 @@ bool KonversationApplication::emitDCOPSig(const QString &appId, \
const QString &o  }
 }
 
-QPtrList<IRCEvent> KonversationApplication::retreiveHooks (EVENT_TYPE a_type)
+QPtrList<IRCEvent> KonversationApplication::retrieveHooks (EVENT_TYPE a_type)
 {
   QPtrList<IRCEvent> ret_value;
   IRCEvent *e;
diff --git a/konversation/konversationapplication.h \
b/konversation/konversationapplication.h index 32c1f9e..8b24f75 100644
--- a/konversation/konversationapplication.h
+++ b/konversation/konversationapplication.h
@@ -43,7 +43,7 @@ class KonversationApplication : public KApplication
     const QStringList& getUrlList();
 
     // DCOP: Returns a list of signals we should emit
-    QPtrList<IRCEvent> retreiveHooks(EVENT_TYPE type);
+    QPtrList<IRCEvent> retrieveHooks(EVENT_TYPE type);
 
     KonversationApplication();
     ~KonversationApplication();
diff --git a/konversation/ledtabbar.cpp b/konversation/ledtabbar.cpp
index a41f11e..a3507f3 100644
--- a/konversation/ledtabbar.cpp
+++ b/konversation/ledtabbar.cpp
@@ -238,7 +238,7 @@ void LedTabBar::layoutTabs()
   // do we want close widgets on the tabs?
   if(KonversationApplication::preferences.getCloseButtonsOnTabs())
   {
-    // make neccessary modifications
+    // make necessary modifications
     int offset=0;
     for(int index=0;index<count();index++)
     {


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic