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

List:       kde-commits
Subject:    KDE/kdevplatform/plugins
From:       Amilcar do Carmo Lucas <amilcar () kdevelop ! org>
Date:       2009-02-22 20:59:12
Message-ID: 1235336352.018565.2725.nullmailer () svn ! kde ! org
[Download RAW message or body]

SVN commit 930218 by aclu:

Small Krazy fixes

 M  +2 -2      appwizard/appwizardplugin.h  
 M  +1 -1      cvs/checkoutdialog.cpp  
 M  +1 -1      cvs/cvsannotatejob.cpp  
 M  +1 -1      cvs/cvslogjob.cpp  
 M  +2 -2      cvs/cvsplugin.h  
 M  +2 -1      cvs/cvsproxy.cpp  
 M  +1 -1      cvs/cvsstatusjob.cpp  
 M  +1 -1      cvs/editorsview.cpp  
 M  +1 -1      cvs/importdialog.cpp  
 M  +2 -2      filemanager/kdevfilemanagerplugin.h  
 M  +2 -2      konsole/kdevkonsoleviewplugin.h  
 M  +3 -3      problemreporter/problemreporterplugin.h  
 M  +2 -2      problemreporter/problemwidget.h  
 M  +2 -2      projectmanagerview/projectmanagerviewplugin.h  
 M  +2 -2      snippet/snippetcompletionmodel.h  
 M  +2 -2      snippet/snippetplugin.h  
 M  +0 -1      subversion/kdevsvnplugin.cpp  
 M  +2 -2      subversion/svncopyjob_p.h  


--- trunk/KDE/kdevplatform/plugins/appwizard/appwizardplugin.h #930217:930218
@@ -9,8 +9,8 @@
  *   (at your option) any later version.                                   *
  *                                                                         *
  ***************************************************************************/
-#ifndef _APPWIZARDPART_H_
-#define _APPWIZARDPART_H_
+#ifndef _APPWIZARDPLUGIN_H_
+#define _APPWIZARDPLUGIN_H_
 
 #include <interfaces/iplugin.h>
 
--- trunk/KDE/kdevplatform/plugins/cvs/checkoutdialog.cpp #930217:930218
@@ -59,7 +59,7 @@
 
     static QRegExp re_file("^.\\s(.*)");
     bool error = false;
-    QStringList lines = cvsjob->output().split("\n");
+    QStringList lines = cvsjob->output().split('\n');
     foreach(const QString &line, lines) {
         if (line.isEmpty()) {
             // ignore empty lines
--- trunk/KDE/kdevplatform/plugins/cvs/cvsannotatejob.cpp #930217:930218
@@ -52,7 +52,7 @@
     // Annotations for main.cpp
     static QRegExp reFile("Annotations for\\s(.*)");
 
-    QStringList lines = jobOutput.split("\n");
+    QStringList lines = jobOutput.split('\n');
 
     QString filename;
     for (int i=0, linenumber=0; i<lines.count(); ++i) {
--- trunk/KDE/kdevplatform/plugins/cvs/cvslogjob.cpp #930217:930218
@@ -43,7 +43,7 @@
     static QRegExp rx_date( "date:\\s+([^;]*);\\s+author:\\s+([^;]*).*" );
 
 
-    QStringList lines = jobOutput.split("\n");
+    QStringList lines = jobOutput.split('\n');
 
     KDevelop::VcsEvent item;
     bool firstSeperatorReached = false;
--- trunk/KDE/kdevplatform/plugins/cvs/cvsplugin.h #930217:930218
@@ -8,8 +8,8 @@
  *                                                                         *
  ***************************************************************************/
 
-#ifndef CVS_PART_H
-#define CVS_PART_H
+#ifndef CVSPLUGIN_H
+#define CVSPLUGIN_H
 
 #include <KUrl>
 #include <KJob>
--- trunk/KDE/kdevplatform/plugins/cvs/cvsproxy.cpp #930217:930218
@@ -134,7 +134,7 @@
                 if (number > 1) // of course this is only possible if our revision \
is not the first on the branch  number--;
 
-                str = QString("-r") + base + "." + QString::number(number);
+                str = QString("-r") + base + '.' + QString::number(number);
                 kDebug(9500) << "Converted revision "<<orig<<" to previous revision \
"<<str;  }
             break;
@@ -303,6 +303,7 @@
 CvsJob* CvsProxy::add(const QString & repo, const KUrl::List & files, 
                       bool recursiv, bool binary)
 {
+    // FIXME recursiv is not implemented yet
     CvsJob* job = new CvsJob(vcsplugin);
     if ( prepareJob(job, repo) ) {
         *job << "cvs";
--- trunk/KDE/kdevplatform/plugins/cvs/cvsstatusjob.cpp #930217:930218
@@ -82,7 +82,7 @@
 
     QString currentDir;
 
-    QStringList lines = jobOutput.split("\n");
+    QStringList lines = jobOutput.split('\n');
     for (int i=0; i<lines.count(); ++i) {
         QString s = lines[i];
 
--- trunk/KDE/kdevplatform/plugins/cvs/editorsview.cpp #930217:930218
@@ -88,7 +88,7 @@
 
     QString lastfilename;
 
-    QStringList lines = jobOutput.split("\n");
+    QStringList lines = jobOutput.split('\n');
 
     for (int i=0; i<lines.count(); ++i) {
         QString s = lines[i];
--- trunk/KDE/kdevplatform/plugins/cvs/importdialog.cpp #930217:930218
@@ -60,7 +60,7 @@
 
     static QRegExp re_file("^[IN]\\s(.*)");
     bool error = false;
-    QStringList lines = cvsjob->output().split("\n");
+    QStringList lines = cvsjob->output().split('\n');
     foreach(const QString &line, lines) {
         if (line.isEmpty()) {
             // ignore empty lines
--- trunk/KDE/kdevplatform/plugins/filemanager/kdevfilemanagerplugin.h #930217:930218
@@ -16,8 +16,8 @@
  *   Free Software Foundation, Inc.,                                       *
  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
  ***************************************************************************/
-#ifndef KDEVFILEMANAGERPART_H
-#define KDEVFILEMANAGERPART_H
+#ifndef KDEVFILEMANAGERPLUGIN_H
+#define KDEVFILEMANAGERPLUGIN_H
 
 #include <interfaces/iplugin.h>
 #include <QtCore/QVariant>
--- trunk/KDE/kdevplatform/plugins/konsole/kdevkonsoleviewplugin.h #930217:930218
@@ -9,8 +9,8 @@
 *                                                                         *
 ***************************************************************************/
 
-#ifndef KDEVKONSOLEVIEW_PART_H
-#define KDEVKONSOLEVIEW_PART_H
+#ifndef KDEVKONSOLEVIEWPLUGIN_H
+#define KDEVKONSOLEVIEWPLUGIN_H
 
 #include <interfaces/iplugin.h>
 #include <QtCore/QVariant>
--- trunk/KDE/kdevplatform/plugins/problemreporter/problemreporterplugin.h \
#930217:930218 @@ -20,8 +20,8 @@
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
-#ifndef CLASSBROWSERPART_H
-#define CLASSBROWSERPART_H
+#ifndef PROBLEMREPORTERPLUGIN_H
+#define PROBLEMREPORTERPLUGIN_H
 
 #include <interfaces/iplugin.h>
 #include <QtCore/QVariant>
@@ -57,6 +57,6 @@
     QHash<KDevelop::IndexedString, ProblemHighlighter*> m_highlighters;
 };
 
-#endif // CLASSBROWSERPART_H
+#endif // PROBLEMREPORTERPLUGIN_H
 
 // kate: space-indent on; indent-width 2; tab-width 4; replace-tabs on; \
                auto-insert-doxygen on
--- trunk/KDE/kdevplatform/plugins/problemreporter/problemwidget.h #930217:930218
@@ -19,8 +19,8 @@
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
-#ifndef DUCHAINTREE_H
-#define DUCHAINTREE_H
+#ifndef PROBLEMWIDGET_H
+#define PROBLEMWIDGET_H
 
 #include <QtGui/QTreeView>
 
--- trunk/KDE/kdevplatform/plugins/projectmanagerview/projectmanagerviewplugin.h \
#930217:930218 @@ -17,8 +17,8 @@
     the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
     Boston, MA 02110-1301, USA.
 */
-#ifndef KDEVPROJECTMANAGERVIEW_PART_H
-#define KDEVPROJECTMANAGERVIEW_PART_H
+#ifndef KDEVPROJECTMANAGERVIEWPLUGIN_H
+#define KDEVPROJECTMANAGERVIEWPLUGIN_H
 
 #include <QtCore/QPointer>
 #include <interfaces/iplugin.h>
--- trunk/KDE/kdevplatform/plugins/snippet/snippetcompletionmodel.h #930217:930218
@@ -18,8 +18,8 @@
  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
  ***************************************************************************/
 
-#ifndef SNIPPETCODECOMPLETION_H
-#define SNIPPETCODECOMPLETION_H
+#ifndef SNIPPETCODECOMPLETIONMODEL_H
+#define SNIPPETCODECOMPLETIONMODEL_H
 
 #include <ktexteditor/codecompletionmodel.h>
 
--- trunk/KDE/kdevplatform/plugins/snippet/snippetplugin.h #930217:930218
@@ -8,8 +8,8 @@
  *                                                                         *
  ***************************************************************************/
 
-#ifndef __SNIPPETPART_H__
-#define __SNIPPETPART_H__
+#ifndef __SNIPPETPLUGIN_H__
+#define __SNIPPETPLUGIN_H__
 
 #include <interfaces/iplugin.h>
 #include <QtCore/QVariant>
--- trunk/KDE/kdevplatform/plugins/subversion/kdevsvnplugin.cpp #930217:930218
@@ -44,7 +44,6 @@
 #include <interfaces/contextmenuextension.h>
 #include <vcs/vcsrevision.h>
 #include <vcs/vcsevent.h>
-#include <vcs/vcsrevision.h>
 #include <vcs/vcsmapping.h>
 #include <vcs/vcsstatusinfo.h>
 #include <vcs/vcsannotation.h>
--- trunk/KDE/kdevplatform/plugins/subversion/svncopyjob_p.h #930217:930218
@@ -18,8 +18,8 @@
  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
  ***************************************************************************/
 
-#ifndef SVNCOPYJOP_P_H
-#define SVNCOPYJOP_P_H
+#ifndef SVNCOPYJOB_P_H
+#define SVNCOPYJOB_P_H
 
 #include "svninternaljobbase.h"
 


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

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