[Haiku-commits] r27811 - in haiku/trunk/3rdparty/mmu_man/themes: . addons
mmu_man at BerliOS
mmu_man at mail.berlios.de
Wed Oct 1 06:28:49 CEST 2008
Author: mmu_man
Date: 2008-10-01 06:28:35 +0200 (Wed, 01 Oct 2008)
New Revision: 27811
ViewCVS: http://svn.berlios.de/viewcvs/haiku?rev=27811&view=rev
Modified:
haiku/trunk/3rdparty/mmu_man/themes/BeThemeImporter.cpp
haiku/trunk/3rdparty/mmu_man/themes/BeThemeImporter.h
haiku/trunk/3rdparty/mmu_man/themes/CompareMessages.cpp
haiku/trunk/3rdparty/mmu_man/themes/DumpMessage.cpp
haiku/trunk/3rdparty/mmu_man/themes/DumpMessage.h
haiku/trunk/3rdparty/mmu_man/themes/MSThemeImporter.cpp
haiku/trunk/3rdparty/mmu_man/themes/MSThemeImporter.h
haiku/trunk/3rdparty/mmu_man/themes/MakeScreenshot.cpp
haiku/trunk/3rdparty/mmu_man/themes/ParseMessage.cpp
haiku/trunk/3rdparty/mmu_man/themes/ParseMessage.h
haiku/trunk/3rdparty/mmu_man/themes/TextInputAlert.cpp
haiku/trunk/3rdparty/mmu_man/themes/TextInputAlert.h
haiku/trunk/3rdparty/mmu_man/themes/ThemeAddonItem.cpp
haiku/trunk/3rdparty/mmu_man/themes/ThemeAddonItem.h
haiku/trunk/3rdparty/mmu_man/themes/ThemeImporter.cpp
haiku/trunk/3rdparty/mmu_man/themes/ThemeImporter.h
haiku/trunk/3rdparty/mmu_man/themes/ThemeInterfaceView.cpp
haiku/trunk/3rdparty/mmu_man/themes/ThemeInterfaceView.h
haiku/trunk/3rdparty/mmu_man/themes/ThemeItem.cpp
haiku/trunk/3rdparty/mmu_man/themes/ThemeItem.h
haiku/trunk/3rdparty/mmu_man/themes/ThemeManager.cpp
haiku/trunk/3rdparty/mmu_man/themes/ThemeManager.h
haiku/trunk/3rdparty/mmu_man/themes/Themes.rdef
haiku/trunk/3rdparty/mmu_man/themes/ThemesAddon.cpp
haiku/trunk/3rdparty/mmu_man/themes/ThemesAddon.h
haiku/trunk/3rdparty/mmu_man/themes/ThemesApp.cpp
haiku/trunk/3rdparty/mmu_man/themes/ThemesApp.h
haiku/trunk/3rdparty/mmu_man/themes/UITheme.h
haiku/trunk/3rdparty/mmu_man/themes/Utils.cpp
haiku/trunk/3rdparty/mmu_man/themes/Utils.h
haiku/trunk/3rdparty/mmu_man/themes/ViewItem.cpp
haiku/trunk/3rdparty/mmu_man/themes/ViewItem.h
haiku/trunk/3rdparty/mmu_man/themes/addons/BackgroundsAddon.cpp
haiku/trunk/3rdparty/mmu_man/themes/addons/BeIDEAddon.cpp
haiku/trunk/3rdparty/mmu_man/themes/addons/BeOSWindowDecorAddon.cpp
haiku/trunk/3rdparty/mmu_man/themes/addons/DanoUISettingsAddon.cpp
haiku/trunk/3rdparty/mmu_man/themes/addons/DeskbarAddon.cpp
haiku/trunk/3rdparty/mmu_man/themes/addons/EddieAddon.cpp
haiku/trunk/3rdparty/mmu_man/themes/addons/HaikuUISettingsAddon.cpp
haiku/trunk/3rdparty/mmu_man/themes/addons/HaikuWindowDecorAddon.cpp
haiku/trunk/3rdparty/mmu_man/themes/addons/PeAddon.cpp
haiku/trunk/3rdparty/mmu_man/themes/addons/ScreensaverAddon.cpp
haiku/trunk/3rdparty/mmu_man/themes/addons/SoundplayColorAddon.cpp
haiku/trunk/3rdparty/mmu_man/themes/addons/SoundsAddon.cpp
haiku/trunk/3rdparty/mmu_man/themes/addons/TerminalAddon.cpp
haiku/trunk/3rdparty/mmu_man/themes/addons/WinampSkinAddon.cpp
Log:
Add missing copyrights.
Modified: haiku/trunk/3rdparty/mmu_man/themes/BeThemeImporter.cpp
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/BeThemeImporter.cpp 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/BeThemeImporter.cpp 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,4 +1,9 @@
/*
+ * Copyright 2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
+
+/*
* BeThemeImporter class
*/
Modified: haiku/trunk/3rdparty/mmu_man/themes/BeThemeImporter.h
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/BeThemeImporter.h 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/BeThemeImporter.h 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,3 +1,7 @@
+/*
+ * Copyright 2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
#ifndef _BE_THEME_IMPORTER_H
#define _BE_THEME_IMPORTER_H
/*
Modified: haiku/trunk/3rdparty/mmu_man/themes/CompareMessages.cpp
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/CompareMessages.cpp 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/CompareMessages.cpp 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,4 +1,9 @@
/*
+ * Copyright 2000-2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
+
+/*
* function to compare 2 BMessages
*/
#include <string.h>
Modified: haiku/trunk/3rdparty/mmu_man/themes/DumpMessage.cpp
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/DumpMessage.cpp 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/DumpMessage.cpp 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,3 +1,8 @@
+/*
+ * Copyright 2000-2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
+
#include <string.h>
#include <stdio.h>
#include <ctype.h>
Modified: haiku/trunk/3rdparty/mmu_man/themes/DumpMessage.h
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/DumpMessage.h 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/DumpMessage.h 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,3 +1,7 @@
+/*
+ * Copyright 2000-2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
#ifndef _DUMP_MESSAGE_H
#define _DUMP_MESSAGE_H
Modified: haiku/trunk/3rdparty/mmu_man/themes/MSThemeImporter.cpp
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/MSThemeImporter.cpp 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/MSThemeImporter.cpp 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,4 +1,9 @@
/*
+ * Copyright 2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
+
+/*
* MSThemeImporter class
*/
Modified: haiku/trunk/3rdparty/mmu_man/themes/MSThemeImporter.h
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/MSThemeImporter.h 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/MSThemeImporter.h 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,3 +1,7 @@
+/*
+ * Copyright 2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
#ifndef _MS_THEME_IMPORTER_H
#define _MS_THEME_IMPORTER_H
/*
Modified: haiku/trunk/3rdparty/mmu_man/themes/MakeScreenshot.cpp
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/MakeScreenshot.cpp 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/MakeScreenshot.cpp 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,4 +1,9 @@
/*
+ * Copyright 2000-2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
+
+/*
* MakeScreenshot function
*/
Modified: haiku/trunk/3rdparty/mmu_man/themes/ParseMessage.cpp
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/ParseMessage.cpp 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/ParseMessage.cpp 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,3 +1,8 @@
+/*
+ * Copyright 2000-2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
+
#include <string.h>
#include <stdio.h>
#include <ctype.h>
Modified: haiku/trunk/3rdparty/mmu_man/themes/ParseMessage.h
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/ParseMessage.h 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/ParseMessage.h 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,3 +1,7 @@
+/*
+ * Copyright 2000-2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
#ifndef _PARSE_MESSAGE_H
#define _PARSE_MESSAGE_H
Modified: haiku/trunk/3rdparty/mmu_man/themes/TextInputAlert.cpp
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/TextInputAlert.cpp 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/TextInputAlert.cpp 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,3 +1,8 @@
+/*
+ * Copyright 2007-2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
+
//HACK :P
#define private public
#include <Alert.h>
Modified: haiku/trunk/3rdparty/mmu_man/themes/TextInputAlert.h
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/TextInputAlert.h 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/TextInputAlert.h 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,3 +1,7 @@
+/*
+ * Copyright 2007-2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
#ifndef TEXT_INPUT_ALERT_H
#define TEXT_INPUT_ALERT_H
Modified: haiku/trunk/3rdparty/mmu_man/themes/ThemeAddonItem.cpp
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/ThemeAddonItem.cpp 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/ThemeAddonItem.cpp 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,3 +1,8 @@
+/*
+ * Copyright 2000-2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
+
#include "ThemeAddonItem.h"
#include "ThemeInterfaceView.h"
#include "ThemeManager.h"
Modified: haiku/trunk/3rdparty/mmu_man/themes/ThemeAddonItem.h
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/ThemeAddonItem.h 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/ThemeAddonItem.h 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,3 +1,7 @@
+/*
+ * Copyright 2000-2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
#ifndef _ADDON_ITEM_H_
#define _ADDON_ITEM_H_
Modified: haiku/trunk/3rdparty/mmu_man/themes/ThemeImporter.cpp
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/ThemeImporter.cpp 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/ThemeImporter.cpp 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,4 +1,9 @@
/*
+ * Copyright 2007-2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
+
+/*
* ThemeImporter class
*/
Modified: haiku/trunk/3rdparty/mmu_man/themes/ThemeImporter.h
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/ThemeImporter.h 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/ThemeImporter.h 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,3 +1,7 @@
+/*
+ * Copyright 2007-2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
#ifndef _THEME_IMPORTER_H
#define _THEME_IMPORTER_H
/*
Modified: haiku/trunk/3rdparty/mmu_man/themes/ThemeInterfaceView.cpp
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/ThemeInterfaceView.cpp 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/ThemeInterfaceView.cpp 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,3 +1,8 @@
+/*
+ * Copyright 2000-2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
+
#include <Alert.h>
#include <Bitmap.h>
#include <Box.h>
Modified: haiku/trunk/3rdparty/mmu_man/themes/ThemeInterfaceView.h
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/ThemeInterfaceView.h 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/ThemeInterfaceView.h 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,3 +1,7 @@
+/*
+ * Copyright 2000-2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
#include <View.h>
namespace Z {
Modified: haiku/trunk/3rdparty/mmu_man/themes/ThemeItem.cpp
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/ThemeItem.cpp 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/ThemeItem.cpp 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,3 +1,8 @@
+/*
+ * Copyright 2000-2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
+
#include "ThemeItem.h"
#include <View.h>
#include <Font.h>
Modified: haiku/trunk/3rdparty/mmu_man/themes/ThemeItem.h
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/ThemeItem.h 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/ThemeItem.h 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,3 +1,7 @@
+/*
+ * Copyright 2000-2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
#ifndef _THEME_ITEM_H_
#define _THEME_ITEM_H_
Modified: haiku/trunk/3rdparty/mmu_man/themes/ThemeManager.cpp
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/ThemeManager.cpp 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/ThemeManager.cpp 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,4 +1,9 @@
/*
+ * Copyright 2000-2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
+
+/*
* ThemeManager class
*/
Modified: haiku/trunk/3rdparty/mmu_man/themes/ThemeManager.h
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/ThemeManager.h 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/ThemeManager.h 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,4 +1,11 @@
/*
+ * Copyright 2000-2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
+#ifndef _THEMEMANAGER_H_
+#define _THEMEMANAGER_H_
+
+/*
* ThemeManager class header
*/
@@ -138,3 +145,5 @@
using namespace Z::ThemeManager;
+
+#endif // _THEMEMANAGER_H_
Modified: haiku/trunk/3rdparty/mmu_man/themes/Themes.rdef
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/Themes.rdef 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/Themes.rdef 2008-10-01 04:28:35 UTC (rev 27811)
@@ -8,7 +8,7 @@
variety = B_APPV_ALPHA,
internal = 0,
short_info = "Themes",
- long_info = "Themes ©2006-2008 François Revol."
+ long_info = "Themes ©2000-2008 François Revol."
};
resource app_flags B_SINGLE_LAUNCH;
Modified: haiku/trunk/3rdparty/mmu_man/themes/ThemesAddon.cpp
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/ThemesAddon.cpp 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/ThemesAddon.cpp 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,4 +1,9 @@
/*
+ * Copyright 2000-2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
+
+/*
* ThemesAddon class
*/
Modified: haiku/trunk/3rdparty/mmu_man/themes/ThemesAddon.h
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/ThemesAddon.h 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/ThemesAddon.h 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,3 +1,7 @@
+/*
+ * Copyright 2000-2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
#ifndef _THEMES_ADDON_H
#define _THEMES_ADDON_H
/*
Modified: haiku/trunk/3rdparty/mmu_man/themes/ThemesApp.cpp
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/ThemesApp.cpp 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/ThemesApp.cpp 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,3 +1,8 @@
+/*
+ * Copyright 2000-2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
+
#include <Screen.h>
#include <Window.h>
Modified: haiku/trunk/3rdparty/mmu_man/themes/ThemesApp.h
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/ThemesApp.h 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/ThemesApp.h 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,3 +1,10 @@
+/*
+ * Copyright 2000-2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
+#ifndef _THEMESAPP_H_
+#define _THEMESAPP_H_
+
#include <Application.h>
class ThemesApp : public BApplication {
@@ -9,3 +16,5 @@
private:
};
+
+#endif // _THEMESAPP_H_
Modified: haiku/trunk/3rdparty/mmu_man/themes/UITheme.h
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/UITheme.h 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/UITheme.h 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,3 +1,7 @@
+/*
+ * Copyright 2000-2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
#ifndef _Z_UI_THEME_H
#define _Z_UI_THEME_H
Modified: haiku/trunk/3rdparty/mmu_man/themes/Utils.cpp
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/Utils.cpp 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/Utils.cpp 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,3 +1,8 @@
+/*
+ * Copyright 2000-2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
+
#include "Utils.h"
#include <FindDirectory.h>
#include <Path.h>
Modified: haiku/trunk/3rdparty/mmu_man/themes/Utils.h
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/Utils.h 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/Utils.h 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,3 +1,7 @@
+/*
+ * Copyright 2000-2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
#ifndef _FILE_UTILS_H
#define _FILE_UTILS_H
Modified: haiku/trunk/3rdparty/mmu_man/themes/ViewItem.cpp
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/ViewItem.cpp 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/ViewItem.cpp 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,3 +1,8 @@
+/*
+ * Copyright 2000-2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
+
#include "ViewItem.h"
#include <View.h>
#include <Font.h>
Modified: haiku/trunk/3rdparty/mmu_man/themes/ViewItem.h
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/ViewItem.h 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/ViewItem.h 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,3 +1,7 @@
+/*
+ * Copyright 2000-2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
#ifndef _VIEW_ITEM_H_
#define _VIEW_ITEM_H_
Modified: haiku/trunk/3rdparty/mmu_man/themes/addons/BackgroundsAddon.cpp
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/addons/BackgroundsAddon.cpp 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/addons/BackgroundsAddon.cpp 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,4 +1,9 @@
/*
+ * Copyright 2000-2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
+
+/*
* backgrounds ThemesAddon class
*/
Modified: haiku/trunk/3rdparty/mmu_man/themes/addons/BeIDEAddon.cpp
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/addons/BeIDEAddon.cpp 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/addons/BeIDEAddon.cpp 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,4 +1,9 @@
/*
+ * Copyright 2000-2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
+
+/*
* BeIDE Color ThemesAddon class
*/
Modified: haiku/trunk/3rdparty/mmu_man/themes/addons/BeOSWindowDecorAddon.cpp
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/addons/BeOSWindowDecorAddon.cpp 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/addons/BeOSWindowDecorAddon.cpp 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,4 +1,9 @@
/*
+ * Copyright 2000-2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
+
+/*
* window_decor ThemesAddon class
*/
Modified: haiku/trunk/3rdparty/mmu_man/themes/addons/DanoUISettingsAddon.cpp
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/addons/DanoUISettingsAddon.cpp 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/addons/DanoUISettingsAddon.cpp 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,4 +1,9 @@
/*
+ * Copyright 2000-2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
+
+/*
* ui_settings ThemesAddon class
*/
Modified: haiku/trunk/3rdparty/mmu_man/themes/addons/DeskbarAddon.cpp
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/addons/DeskbarAddon.cpp 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/addons/DeskbarAddon.cpp 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,4 +1,9 @@
/*
+ * Copyright 2000-2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
+
+/*
* deskbar ThemesAddon class
*/
Modified: haiku/trunk/3rdparty/mmu_man/themes/addons/EddieAddon.cpp
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/addons/EddieAddon.cpp 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/addons/EddieAddon.cpp 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,4 +1,9 @@
/*
+ * Copyright 2000-2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
+
+/*
* Eddie Color ThemesAddon class
*/
Modified: haiku/trunk/3rdparty/mmu_man/themes/addons/HaikuUISettingsAddon.cpp
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/addons/HaikuUISettingsAddon.cpp 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/addons/HaikuUISettingsAddon.cpp 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,4 +1,9 @@
/*
+ * Copyright 2000-2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
+
+/*
* ui_settings ThemesAddon class
*/
Modified: haiku/trunk/3rdparty/mmu_man/themes/addons/HaikuWindowDecorAddon.cpp
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/addons/HaikuWindowDecorAddon.cpp 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/addons/HaikuWindowDecorAddon.cpp 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,4 +1,9 @@
/*
+ * Copyright 2000-2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
+
+/*
* window_decor ThemesAddon class
*/
Modified: haiku/trunk/3rdparty/mmu_man/themes/addons/PeAddon.cpp
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/addons/PeAddon.cpp 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/addons/PeAddon.cpp 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,4 +1,9 @@
/*
+ * Copyright 2000-2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
+
+/*
* Pe Color ThemesAddon class
*/
Modified: haiku/trunk/3rdparty/mmu_man/themes/addons/ScreensaverAddon.cpp
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/addons/ScreensaverAddon.cpp 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/addons/ScreensaverAddon.cpp 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,4 +1,9 @@
/*
+ * Copyright 2000-2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
+
+/*
* screensaver ThemesAddon class
*/
Modified: haiku/trunk/3rdparty/mmu_man/themes/addons/SoundplayColorAddon.cpp
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/addons/SoundplayColorAddon.cpp 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/addons/SoundplayColorAddon.cpp 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,4 +1,9 @@
/*
+ * Copyright 2000-2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
+
+/*
* SoundPlay Color ThemesAddon class
*/
Modified: haiku/trunk/3rdparty/mmu_man/themes/addons/SoundsAddon.cpp
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/addons/SoundsAddon.cpp 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/addons/SoundsAddon.cpp 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,4 +1,9 @@
/*
+ * Copyright 2000-2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
+
+/*
* sounds ThemesAddon class
*/
Modified: haiku/trunk/3rdparty/mmu_man/themes/addons/TerminalAddon.cpp
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/addons/TerminalAddon.cpp 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/addons/TerminalAddon.cpp 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,4 +1,9 @@
/*
+ * Copyright 2000-2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
+
+/*
* BeIDE Color ThemesAddon class
*/
Modified: haiku/trunk/3rdparty/mmu_man/themes/addons/WinampSkinAddon.cpp
===================================================================
--- haiku/trunk/3rdparty/mmu_man/themes/addons/WinampSkinAddon.cpp 2008-10-01 04:19:30 UTC (rev 27810)
+++ haiku/trunk/3rdparty/mmu_man/themes/addons/WinampSkinAddon.cpp 2008-10-01 04:28:35 UTC (rev 27811)
@@ -1,4 +1,9 @@
/*
+ * Copyright 2000-2008, François Revol, <revol at free.fr>. All rights reserved.
+ * Distributed under the terms of the MIT License.
+ */
+
+/*
* WinampSkin ThemesAddon class
*/
More information about the Haiku-commits
mailing list