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

List:       kde-commits
Subject:    extragear/graphics/kipi-plugins/dngconverter/plugin
From:       Gilles Caulier <caulier.gilles () gmail ! com>
Date:       2010-11-08 13:42:30
Message-ID: 20101108134230.3D69FAC89B () svn ! kde ! org
[Download RAW message or body]

SVN commit 1194262 by cgilles:

use private internal container


 M  +2 -2      actionthread.cpp  
 M  +2 -2      actionthread.h  
 M  +1 -1      batchdialog.cpp  
 M  +2 -2      batchdialog.h  
 M  +1 -1      clistviewitem.h  
 M  +1 -1      plugin_dngconverter.cpp  
 M  +1 -1      plugin_dngconverter.h  
 M  +2 -2      settingswidget.cpp  
 M  +2 -3      settingswidget.h  


--- trunk/extragear/graphics/kipi-plugins/dngconverter/plugin/actionthread.cpp #1194261:1194262
@@ -6,7 +6,7 @@
  * Date        : 2008-09-24
  * Description : a class to manage plugin actions using threads
  *
- * Copyright (C) 2008-2009 by Gilles Caulier <caulier dot gilles at gmail dot com>
+ * Copyright (C) 2008-2010 by Gilles Caulier <caulier dot gilles at gmail dot com>
  *
  * This program is free software; you can redistribute it
  * and/or modify it under the terms of the GNU General
@@ -52,7 +52,7 @@
 namespace KIPIDNGConverterPlugin
 {
 
-class ActionThreadPriv
+class ActionThread::ActionThreadPriv
 {
 public:
 
--- trunk/extragear/graphics/kipi-plugins/dngconverter/plugin/actionthread.h #1194261:1194262
@@ -6,7 +6,7 @@
  * Date        : 2008-09-24
  * Description : a class to manage plugin actions using threads
  *
- * Copyright (C) 2008-2009 by Gilles Caulier <caulier dot gilles at gmail dot com>
+ * Copyright (C) 2008-2010 by Gilles Caulier <caulier dot gilles at gmail dot com>
  *
  * This program is free software; you can redistribute it
  * and/or modify it under the terms of the GNU General
@@ -39,7 +39,6 @@
 {
 
 class ActionData;
-class ActionThreadPriv;
 
 class ActionThread : public QThread
 {
@@ -77,6 +76,7 @@
 
 private:
 
+    class ActionThreadPriv;
     ActionThreadPriv* const d;
 };
 
--- trunk/extragear/graphics/kipi-plugins/dngconverter/plugin/batchdialog.cpp #1194261:1194262
@@ -74,7 +74,7 @@
 namespace KIPIDNGConverterPlugin
 {
 
-class BatchDialogPriv
+class BatchDialog::BatchDialogPriv
 {
 public:
 
--- trunk/extragear/graphics/kipi-plugins/dngconverter/plugin/batchdialog.h #1194261:1194262
@@ -6,7 +6,7 @@
  * Date        : 2008-09-24
  * Description : DNG converter batch dialog
  *
- * Copyright (C) 2008-2009 by Gilles Caulier <caulier dot gilles at gmail dot com>
+ * Copyright (C) 2008-2010 by Gilles Caulier <caulier dot gilles at gmail dot com>
  *
  * This program is free software; you can redistribute it
  * and/or modify it under the terms of the GNU General
@@ -39,7 +39,6 @@
 {
 
 class ActionData;
-class BatchDialogPriv;
 class CListViewItem;
 class DNGConverterAboutData;
 
@@ -91,6 +90,7 @@
 
 private:
 
+    class BatchDialogPriv;
     BatchDialogPriv* const d;
 };
 
--- trunk/extragear/graphics/kipi-plugins/dngconverter/plugin/clistviewitem.h #1194261:1194262
@@ -6,7 +6,7 @@
  * Date        : 2008-09-24
  * Description : Raw file list view used into batch DNG converter.
  *
- * Copyright (C) 2008-2009 by Gilles Caulier <caulier dot gilles at gmail dot com>
+ * Copyright (C) 2008-2010 by Gilles Caulier <caulier dot gilles at gmail dot com>
  *
  * This program is free software; you can redistribute it
  * and/or modify it under the terms of the GNU General
--- trunk/extragear/graphics/kipi-plugins/dngconverter/plugin/plugin_dngconverter.cpp #1194261:1194262
@@ -6,7 +6,7 @@
  * Date        : 2008-09-24
  * Description : a kipi plugin to convert Raw file to DNG
  *
- * Copyright (C) 2008-2009 by Gilles Caulier <caulier dot gilles at gmail dot com>
+ * Copyright (C) 2008-2010 by Gilles Caulier <caulier dot gilles at gmail dot com>
  *
  * This program is free software; you can redistribute it
  * and/or modify it under the terms of the GNU General
--- trunk/extragear/graphics/kipi-plugins/dngconverter/plugin/plugin_dngconverter.h #1194261:1194262
@@ -6,7 +6,7 @@
  * Date        : 2008-09-24
  * Description : a kipi plugin to convert Raw file to DNG
  *
- * Copyright (C) 2008-2009 by Gilles Caulier <caulier dot gilles at gmail dot com>
+ * Copyright (C) 2008-2010 by Gilles Caulier <caulier dot gilles at gmail dot com>
  *
  * This program is free software; you can redistribute it
  * and/or modify it under the terms of the GNU General
--- trunk/extragear/graphics/kipi-plugins/dngconverter/plugin/settingswidget.cpp #1194261:1194262
@@ -6,7 +6,7 @@
  * Date        : 2008-09-24
  * Description : save settings widgets
  *
- * Copyright (C) 2008-2009 by Gilles Caulier <caulier dot gilles at gmail dot com>
+ * Copyright (C) 2008-2010 by Gilles Caulier <caulier dot gilles at gmail dot com>
  *
  * This program is free software; you can redistribute it
  * and/or modify it under the terms of the GNU General
@@ -55,7 +55,7 @@
 namespace KIPIDNGConverterPlugin
 {
 
-class SettingsWidgetPriv
+class SettingsWidget::SettingsWidgetPriv
 {
 public:
 
--- trunk/extragear/graphics/kipi-plugins/dngconverter/plugin/settingswidget.h #1194261:1194262
@@ -6,7 +6,7 @@
  * Date        : 2008-09-24
  * Description : save settings widgets
  *
- * Copyright (C) 2008-2009 by Gilles Caulier <caulier dot gilles at gmail dot com>
+ * Copyright (C) 2008-2010 by Gilles Caulier <caulier dot gilles at gmail dot com>
  *
  * This program is free software; you can redistribute it
  * and/or modify it under the terms of the GNU General
@@ -30,8 +30,6 @@
 namespace KIPIDNGConverterPlugin
 {
 
-class SettingsWidgetPriv;
-
 class SettingsWidget : public QWidget
 {
     Q_OBJECT
@@ -72,6 +70,7 @@
 
 private:
 
+    class SettingsWidgetPriv;
     SettingsWidgetPriv* const d;
 };
 
[prev in list] [next in list] [prev in thread] [next in thread] 

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