Skip to content
This repository has been archived by the owner on May 24, 2023. It is now read-only.

Commit

Permalink
Update copyrights
Browse files Browse the repository at this point in the history
  • Loading branch information
pasnox committed Jun 15, 2010
1 parent dabf663 commit a660589
Show file tree
Hide file tree
Showing 39 changed files with 683 additions and 456 deletions.
16 changes: 15 additions & 1 deletion qwbfs/installs.pri
Original file line number Diff line number Diff line change
@@ -1,4 +1,18 @@
# QWBFS Manager install script
###########################################################################################
## Created using Monkey Studio v1.8.4.0b2 (1.8.4.0b2)
##
## Author : Filipe AZEVEDO aka Nox P@sNox <[email protected]>
## Project : installs
## FileName : installs.pri
## Date : 2010-04-04T11:04:05
## License : GPL3
## Comment : The QWBFS Manager installs properties for unix like systems
## Home Page : http://code.google.com/p/qwbfs
##
## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
##
###########################################################################################

unix:!mac {
PACKAGE_PREFIX = $${prefix}
Expand Down
14 changes: 7 additions & 7 deletions qwbfs/src/ExportThread.cpp
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
/****************************************************************************
**
** Created using Monkey Studio v1.8.4.0b2 (1.8.4.0b2)
** Created using Monkey Studio IDE v1.8.4.0 (1.8.4.0)
** Authors : Filipe AZEVEDO aka Nox P@sNox <[email protected]>
** Project : qwbfs
** Project : QWBFS Manager
** FileName : ExportThread.cpp
** Date : 2010-04-25T13:05:33
** Date : 2010-06-15T23:21:10
** License : GPL
** Home Page : http://code.google.com/p/qwbfs
** Comment : QWBFS Manager is a crossplatform WBFS Manager developed using Qt4/C++.
** It's currently working under Unix/Linux, Mac OS X, and build under windows (but not yet working).
**
** Comment : QWBFS Manager is a cross platform WBFS manager developed using C++/Qt4.
** It's currently working fine under Windows (XP to Seven, 32 & 64Bits), Mac OS X (10.4.x to 10.6.x), Linux & unix like.
**
** DISCLAIMER: THIS APPLICATION COMES WITH NO WARRANTY AT ALL, NEITHER EXPRESS NOR IMPLIED.
** I DO NOT TAKE ANY RESPONSIBILITY FOR ANY DAMAGE TO YOUR WII CONSOLE OR WII PARTITION
** I DO NOT TAKE ANY RESPONSIBILITY FOR ANY DAMAGE TO YOUR HARDWARE OR YOUR DATA
** BECAUSE OF IMPROPER USAGE OF THIS SOFTWARE.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
Expand Down
14 changes: 7 additions & 7 deletions qwbfs/src/ExportThread.h
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
/****************************************************************************
**
** Created using Monkey Studio v1.8.4.0b2 (1.8.4.0b2)
** Created using Monkey Studio IDE v1.8.4.0 (1.8.4.0)
** Authors : Filipe AZEVEDO aka Nox P@sNox <[email protected]>
** Project : qwbfs
** Project : QWBFS Manager
** FileName : ExportThread.h
** Date : 2010-04-25T13:05:33
** Date : 2010-06-15T23:21:10
** License : GPL
** Home Page : http://code.google.com/p/qwbfs
** Comment : QWBFS Manager is a crossplatform WBFS Manager developed using Qt4/C++.
** It's currently working under Unix/Linux, Mac OS X, and build under windows (but not yet working).
**
** Comment : QWBFS Manager is a cross platform WBFS manager developed using C++/Qt4.
** It's currently working fine under Windows (XP to Seven, 32 & 64Bits), Mac OS X (10.4.x to 10.6.x), Linux & unix like.
**
** DISCLAIMER: THIS APPLICATION COMES WITH NO WARRANTY AT ALL, NEITHER EXPRESS NOR IMPLIED.
** I DO NOT TAKE ANY RESPONSIBILITY FOR ANY DAMAGE TO YOUR WII CONSOLE OR WII PARTITION
** I DO NOT TAKE ANY RESPONSIBILITY FOR ANY DAMAGE TO YOUR HARDWARE OR YOUR DATA
** BECAUSE OF IMPROPER USAGE OF THIS SOFTWARE.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
Expand Down
21 changes: 12 additions & 9 deletions qwbfs/src/Gauge.cpp
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
/****************************************************************************
**
** Created using Monkey Studio v1.8.4.0b2 (1.8.4.0b2)
** Created using Monkey Studio IDE v1.8.4.0 (1.8.4.0)
** Authors : Filipe AZEVEDO aka Nox P@sNox <[email protected]>
** Project : qwbfs
** Project : QWBFS Manager
** FileName : Gauge.cpp
** Date : 2010-04-25T13:05:33
** Date : 2010-06-15T23:21:10
** License : GPL
** Home Page : http://code.google.com/p/qwbfs
** Comment : QWBFS Manager is a crossplatform WBFS Manager developed using Qt4/C++.
** It's currently working under Unix/Linux, Mac OS X, and build under windows (but not yet working).
**
** Comment : QWBFS Manager is a cross platform WBFS manager developed using C++/Qt4.
** It's currently working fine under Windows (XP to Seven, 32 & 64Bits), Mac OS X (10.4.x to 10.6.x), Linux & unix like.
**
** DISCLAIMER: THIS APPLICATION COMES WITH NO WARRANTY AT ALL, NEITHER EXPRESS NOR IMPLIED.
** I DO NOT TAKE ANY RESPONSIBILITY FOR ANY DAMAGE TO YOUR WII CONSOLE OR WII PARTITION
** I DO NOT TAKE ANY RESPONSIBILITY FOR ANY DAMAGE TO YOUR HARDWARE OR YOUR DATA
** BECAUSE OF IMPROPER USAGE OF THIS SOFTWARE.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
Expand Down Expand Up @@ -97,7 +97,8 @@ qint64 Gauge::temporarySize() const
void Gauge::paintEvent( QPaintEvent* event )
{
Q_UNUSED( event );
QPainter painter( this ); const qreal available = mSize;
QPainter painter( this );
const qreal available = mSize;
const qreal used = mUsedSize;
const qreal free = mFreeSize;
const qreal max = used +mTemporarySize;
Expand Down Expand Up @@ -163,7 +164,9 @@ void Gauge::paintEvent( QPaintEvent* event )
style()->drawControl( QStyle::CE_ProgressBarContents, &option, &painter, this );
}

// text painter.setPen( option.palette.color( QPalette::Text ) ); painter.setBrush( Qt::NoBrush ); painter.drawText( rect(), flags, option.text );
// text painter.setPen( option.palette.color( QPalette::Text ) );
painter.setBrush( Qt::NoBrush );
painter.drawText( rect(), flags, option.text );
//style()->drawControl( QStyle::CE_ProgressBarLabel, &option, &painter, this );
}

Expand Down
14 changes: 7 additions & 7 deletions qwbfs/src/Gauge.h
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
/****************************************************************************
**
** Created using Monkey Studio v1.8.4.0b2 (1.8.4.0b2)
** Created using Monkey Studio IDE v1.8.4.0 (1.8.4.0)
** Authors : Filipe AZEVEDO aka Nox P@sNox <[email protected]>
** Project : qwbfs
** Project : QWBFS Manager
** FileName : Gauge.h
** Date : 2010-04-25T13:05:33
** Date : 2010-06-15T23:21:10
** License : GPL
** Home Page : http://code.google.com/p/qwbfs
** Comment : QWBFS Manager is a crossplatform WBFS Manager developed using Qt4/C++.
** It's currently working under Unix/Linux, Mac OS X, and build under windows (but not yet working).
**
** Comment : QWBFS Manager is a cross platform WBFS manager developed using C++/Qt4.
** It's currently working fine under Windows (XP to Seven, 32 & 64Bits), Mac OS X (10.4.x to 10.6.x), Linux & unix like.
**
** DISCLAIMER: THIS APPLICATION COMES WITH NO WARRANTY AT ALL, NEITHER EXPRESS NOR IMPLIED.
** I DO NOT TAKE ANY RESPONSIBILITY FOR ANY DAMAGE TO YOUR WII CONSOLE OR WII PARTITION
** I DO NOT TAKE ANY RESPONSIBILITY FOR ANY DAMAGE TO YOUR HARDWARE OR YOUR DATA
** BECAUSE OF IMPROPER USAGE OF THIS SOFTWARE.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
Expand Down
14 changes: 7 additions & 7 deletions qwbfs/src/PartitionWidget.cpp
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
/****************************************************************************
**
** Created using Monkey Studio v1.8.4.0b2 (1.8.4.0b2)
** Created using Monkey Studio IDE v1.8.4.0 (1.8.4.0)
** Authors : Filipe AZEVEDO aka Nox P@sNox <[email protected]>
** Project : qwbfs
** Project : QWBFS Manager
** FileName : PartitionWidget.cpp
** Date : 2010-04-25T13:05:33
** Date : 2010-06-15T23:21:10
** License : GPL
** Home Page : http://code.google.com/p/qwbfs
** Comment : QWBFS Manager is a crossplatform WBFS Manager developed using Qt4/C++.
** It's currently working under Unix/Linux, Mac OS X, and build under windows (but not yet working).
**
** Comment : QWBFS Manager is a cross platform WBFS manager developed using C++/Qt4.
** It's currently working fine under Windows (XP to Seven, 32 & 64Bits), Mac OS X (10.4.x to 10.6.x), Linux & unix like.
**
** DISCLAIMER: THIS APPLICATION COMES WITH NO WARRANTY AT ALL, NEITHER EXPRESS NOR IMPLIED.
** I DO NOT TAKE ANY RESPONSIBILITY FOR ANY DAMAGE TO YOUR WII CONSOLE OR WII PARTITION
** I DO NOT TAKE ANY RESPONSIBILITY FOR ANY DAMAGE TO YOUR HARDWARE OR YOUR DATA
** BECAUSE OF IMPROPER USAGE OF THIS SOFTWARE.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
Expand Down
14 changes: 7 additions & 7 deletions qwbfs/src/PartitionWidget.h
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
/****************************************************************************
**
** Created using Monkey Studio v1.8.4.0b2 (1.8.4.0b2)
** Created using Monkey Studio IDE v1.8.4.0 (1.8.4.0)
** Authors : Filipe AZEVEDO aka Nox P@sNox <[email protected]>
** Project : qwbfs
** Project : QWBFS Manager
** FileName : PartitionWidget.h
** Date : 2010-04-25T13:05:33
** Date : 2010-06-15T23:21:10
** License : GPL
** Home Page : http://code.google.com/p/qwbfs
** Comment : QWBFS Manager is a crossplatform WBFS Manager developed using Qt4/C++.
** It's currently working under Unix/Linux, Mac OS X, and build under windows (but not yet working).
**
** Comment : QWBFS Manager is a cross platform WBFS manager developed using C++/Qt4.
** It's currently working fine under Windows (XP to Seven, 32 & 64Bits), Mac OS X (10.4.x to 10.6.x), Linux & unix like.
**
** DISCLAIMER: THIS APPLICATION COMES WITH NO WARRANTY AT ALL, NEITHER EXPRESS NOR IMPLIED.
** I DO NOT TAKE ANY RESPONSIBILITY FOR ANY DAMAGE TO YOUR WII CONSOLE OR WII PARTITION
** I DO NOT TAKE ANY RESPONSIBILITY FOR ANY DAMAGE TO YOUR HARDWARE OR YOUR DATA
** BECAUSE OF IMPROPER USAGE OF THIS SOFTWARE.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
Expand Down
14 changes: 7 additions & 7 deletions qwbfs/src/ProgressDialog.cpp
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
/****************************************************************************
**
** Created using Monkey Studio v1.8.4.0b2 (1.8.4.0b2)
** Created using Monkey Studio IDE v1.8.4.0 (1.8.4.0)
** Authors : Filipe AZEVEDO aka Nox P@sNox <[email protected]>
** Project : qwbfs
** Project : QWBFS Manager
** FileName : ProgressDialog.cpp
** Date : 2010-04-25T13:05:33
** Date : 2010-06-15T23:21:10
** License : GPL
** Home Page : http://code.google.com/p/qwbfs
** Comment : QWBFS Manager is a crossplatform WBFS Manager developed using Qt4/C++.
** It's currently working under Unix/Linux, Mac OS X, and build under windows (but not yet working).
**
** Comment : QWBFS Manager is a cross platform WBFS manager developed using C++/Qt4.
** It's currently working fine under Windows (XP to Seven, 32 & 64Bits), Mac OS X (10.4.x to 10.6.x), Linux & unix like.
**
** DISCLAIMER: THIS APPLICATION COMES WITH NO WARRANTY AT ALL, NEITHER EXPRESS NOR IMPLIED.
** I DO NOT TAKE ANY RESPONSIBILITY FOR ANY DAMAGE TO YOUR WII CONSOLE OR WII PARTITION
** I DO NOT TAKE ANY RESPONSIBILITY FOR ANY DAMAGE TO YOUR HARDWARE OR YOUR DATA
** BECAUSE OF IMPROPER USAGE OF THIS SOFTWARE.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
Expand Down
14 changes: 7 additions & 7 deletions qwbfs/src/ProgressDialog.h
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
/****************************************************************************
**
** Created using Monkey Studio v1.8.4.0b2 (1.8.4.0b2)
** Created using Monkey Studio IDE v1.8.4.0 (1.8.4.0)
** Authors : Filipe AZEVEDO aka Nox P@sNox <[email protected]>
** Project : qwbfs
** Project : QWBFS Manager
** FileName : ProgressDialog.h
** Date : 2010-04-25T13:05:33
** Date : 2010-06-15T23:21:10
** License : GPL
** Home Page : http://code.google.com/p/qwbfs
** Comment : QWBFS Manager is a crossplatform WBFS Manager developed using Qt4/C++.
** It's currently working under Unix/Linux, Mac OS X, and build under windows (but not yet working).
**
** Comment : QWBFS Manager is a cross platform WBFS manager developed using C++/Qt4.
** It's currently working fine under Windows (XP to Seven, 32 & 64Bits), Mac OS X (10.4.x to 10.6.x), Linux & unix like.
**
** DISCLAIMER: THIS APPLICATION COMES WITH NO WARRANTY AT ALL, NEITHER EXPRESS NOR IMPLIED.
** I DO NOT TAKE ANY RESPONSIBILITY FOR ANY DAMAGE TO YOUR WII CONSOLE OR WII PARTITION
** I DO NOT TAKE ANY RESPONSIBILITY FOR ANY DAMAGE TO YOUR HARDWARE OR YOUR DATA
** BECAUSE OF IMPROPER USAGE OF THIS SOFTWARE.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
Expand Down
20 changes: 20 additions & 0 deletions qwbfs/src/Properties.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
/****************************************************************************
**
** Created using Monkey Studio IDE v1.8.4.0 (1.8.4.0)
** Authors : Filipe AZEVEDO aka Nox P@sNox <[email protected]>
** Project : QWBFS Manager
** FileName : Properties.cpp
** Date : 2010-06-15T23:21:10
** License : GPL
** Home Page : http://code.google.com/p/qwbfs
** Comment : QWBFS Manager is a cross platform WBFS manager developed using C++/Qt4.
** It's currently working fine under Windows (XP to Seven, 32 & 64Bits), Mac OS X (10.4.x to 10.6.x), Linux & unix like.
**
** DISCLAIMER: THIS APPLICATION COMES WITH NO WARRANTY AT ALL, NEITHER EXPRESS NOR IMPLIED.
** I DO NOT TAKE ANY RESPONSIBILITY FOR ANY DAMAGE TO YOUR HARDWARE OR YOUR DATA
** BECAUSE OF IMPROPER USAGE OF THIS SOFTWARE.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
****************************************************************************/
#include "Properties.h"
#include "datacache/DataNetworkCache.h"
#include "UIMain.h"
Expand Down
20 changes: 20 additions & 0 deletions qwbfs/src/Properties.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
/****************************************************************************
**
** Created using Monkey Studio IDE v1.8.4.0 (1.8.4.0)
** Authors : Filipe AZEVEDO aka Nox P@sNox <[email protected]>
** Project : QWBFS Manager
** FileName : Properties.h
** Date : 2010-06-15T23:21:10
** License : GPL
** Home Page : http://code.google.com/p/qwbfs
** Comment : QWBFS Manager is a cross platform WBFS manager developed using C++/Qt4.
** It's currently working fine under Windows (XP to Seven, 32 & 64Bits), Mac OS X (10.4.x to 10.6.x), Linux & unix like.
**
** DISCLAIMER: THIS APPLICATION COMES WITH NO WARRANTY AT ALL, NEITHER EXPRESS NOR IMPLIED.
** I DO NOT TAKE ANY RESPONSIBILITY FOR ANY DAMAGE TO YOUR HARDWARE OR YOUR DATA
** BECAUSE OF IMPROPER USAGE OF THIS SOFTWARE.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
****************************************************************************/
#ifndef PROPERTIES_H
#define PROPERTIES_H

Expand Down
20 changes: 20 additions & 0 deletions qwbfs/src/PropertiesDialog.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
/****************************************************************************
**
** Created using Monkey Studio IDE v1.8.4.0 (1.8.4.0)
** Authors : Filipe AZEVEDO aka Nox P@sNox <[email protected]>
** Project : QWBFS Manager
** FileName : PropertiesDialog.cpp
** Date : 2010-06-15T23:21:10
** License : GPL
** Home Page : http://code.google.com/p/qwbfs
** Comment : QWBFS Manager is a cross platform WBFS manager developed using C++/Qt4.
** It's currently working fine under Windows (XP to Seven, 32 & 64Bits), Mac OS X (10.4.x to 10.6.x), Linux & unix like.
**
** DISCLAIMER: THIS APPLICATION COMES WITH NO WARRANTY AT ALL, NEITHER EXPRESS NOR IMPLIED.
** I DO NOT TAKE ANY RESPONSIBILITY FOR ANY DAMAGE TO YOUR HARDWARE OR YOUR DATA
** BECAUSE OF IMPROPER USAGE OF THIS SOFTWARE.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
****************************************************************************/
#include "PropertiesDialog.h"
#include "Properties.h"

Expand Down
20 changes: 20 additions & 0 deletions qwbfs/src/PropertiesDialog.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
/****************************************************************************
**
** Created using Monkey Studio IDE v1.8.4.0 (1.8.4.0)
** Authors : Filipe AZEVEDO aka Nox P@sNox <[email protected]>
** Project : QWBFS Manager
** FileName : PropertiesDialog.h
** Date : 2010-06-15T23:21:10
** License : GPL
** Home Page : http://code.google.com/p/qwbfs
** Comment : QWBFS Manager is a cross platform WBFS manager developed using C++/Qt4.
** It's currently working fine under Windows (XP to Seven, 32 & 64Bits), Mac OS X (10.4.x to 10.6.x), Linux & unix like.
**
** DISCLAIMER: THIS APPLICATION COMES WITH NO WARRANTY AT ALL, NEITHER EXPRESS NOR IMPLIED.
** I DO NOT TAKE ANY RESPONSIBILITY FOR ANY DAMAGE TO YOUR HARDWARE OR YOUR DATA
** BECAUSE OF IMPROPER USAGE OF THIS SOFTWARE.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
****************************************************************************/
#ifndef PROPERTIESDIALOG_H
#define PROPERTIESDIALOG_H

Expand Down
14 changes: 7 additions & 7 deletions qwbfs/src/UIAbout.cpp
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
/****************************************************************************
**
** Created using Monkey Studio v1.8.4.0b2 (1.8.4.0b2)
** Created using Monkey Studio IDE v1.8.4.0 (1.8.4.0)
** Authors : Filipe AZEVEDO aka Nox P@sNox <[email protected]>
** Project : qwbfs
** Project : QWBFS Manager
** FileName : UIAbout.cpp
** Date : 2010-05-29T13:13:25
** Date : 2010-06-15T23:21:10
** License : GPL
** Home Page : http://code.google.com/p/qwbfs
** Comment : QWBFS Manager is a crossplatform WBFS Manager developed using Qt4/C++.
** It's currently working under Unix/Linux, Mac OS X, and build under windows (but not yet working).
**
** Comment : QWBFS Manager is a cross platform WBFS manager developed using C++/Qt4.
** It's currently working fine under Windows (XP to Seven, 32 & 64Bits), Mac OS X (10.4.x to 10.6.x), Linux & unix like.
**
** DISCLAIMER: THIS APPLICATION COMES WITH NO WARRANTY AT ALL, NEITHER EXPRESS NOR IMPLIED.
** I DO NOT TAKE ANY RESPONSIBILITY FOR ANY DAMAGE TO YOUR WII CONSOLE OR WII PARTITION
** I DO NOT TAKE ANY RESPONSIBILITY FOR ANY DAMAGE TO YOUR HARDWARE OR YOUR DATA
** BECAUSE OF IMPROPER USAGE OF THIS SOFTWARE.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
Expand Down
14 changes: 7 additions & 7 deletions qwbfs/src/UIAbout.h
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
/****************************************************************************
**
** Created using Monkey Studio v1.8.4.0b2 (1.8.4.0b2)
** Created using Monkey Studio IDE v1.8.4.0 (1.8.4.0)
** Authors : Filipe AZEVEDO aka Nox P@sNox <[email protected]>
** Project : qwbfs
** Project : QWBFS Manager
** FileName : UIAbout.h
** Date : 2010-05-29T13:13:25
** Date : 2010-06-15T23:21:10
** License : GPL
** Home Page : http://code.google.com/p/qwbfs
** Comment : QWBFS Manager is a crossplatform WBFS Manager developed using Qt4/C++.
** It's currently working under Unix/Linux, Mac OS X, and build under windows (but not yet working).
**
** Comment : QWBFS Manager is a cross platform WBFS manager developed using C++/Qt4.
** It's currently working fine under Windows (XP to Seven, 32 & 64Bits), Mac OS X (10.4.x to 10.6.x), Linux & unix like.
**
** DISCLAIMER: THIS APPLICATION COMES WITH NO WARRANTY AT ALL, NEITHER EXPRESS NOR IMPLIED.
** I DO NOT TAKE ANY RESPONSIBILITY FOR ANY DAMAGE TO YOUR WII CONSOLE OR WII PARTITION
** I DO NOT TAKE ANY RESPONSIBILITY FOR ANY DAMAGE TO YOUR HARDWARE OR YOUR DATA
** BECAUSE OF IMPROPER USAGE OF THIS SOFTWARE.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
Expand Down
Loading

0 comments on commit a660589

Please sign in to comment.