mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-07 05:35:02 -05:00
Right. Fixed line feeds. archos.ico is binary. Added a couple more files rockbox leaves in the root to the list.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11727 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
46eb5c6bcd
commit
e669709994
6 changed files with 25 additions and 15 deletions
BIN
rbutil/archos.ico
Normal file
BIN
rbutil/archos.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 21 KiB |
|
|
@ -367,4 +367,4 @@ This General Public License does not permit incorporating your program into
|
|||
proprietary programs. If your program is a subroutine library, you may
|
||||
consider it more useful to permit linking proprietary applications with the
|
||||
library. If this is what you want to do, use the GNU Library General
|
||||
Public License instead of this License.
|
||||
Public License instead of this License.
|
||||
|
|
|
|||
|
|
@ -76,6 +76,7 @@
|
|||
<Option compilerVar="CPP" />
|
||||
<Option compile="0" />
|
||||
<Option link="0" />
|
||||
<Option target="default" />
|
||||
</Unit>
|
||||
<Unit filename="fonts_3d.xpm">
|
||||
<Option compilerVar="CPP" />
|
||||
|
|
@ -104,12 +105,6 @@
|
|||
<Option compilerVar="CPP" />
|
||||
<Option target="default" />
|
||||
</Unit>
|
||||
<Unit filename="rbutil.exe.Manifest">
|
||||
<Option compilerVar="CPP" />
|
||||
<Option compile="0" />
|
||||
<Option link="0" />
|
||||
<Option target="default" />
|
||||
</Unit>
|
||||
<Unit filename="rbutil.h">
|
||||
<Option compilerVar="CPP" />
|
||||
<Option compile="0" />
|
||||
|
|
@ -154,6 +149,12 @@
|
|||
<Option link="0" />
|
||||
<Option target="default" />
|
||||
</Unit>
|
||||
<Unit filename="tools2_3d.xpm">
|
||||
<Option compilerVar="CPP" />
|
||||
<Option compile="0" />
|
||||
<Option link="0" />
|
||||
<Option target="default" />
|
||||
</Unit>
|
||||
<Unit filename="uninstall_3d.xpm">
|
||||
<Option compilerVar="CPP" />
|
||||
<Option compile="0" />
|
||||
|
|
@ -176,6 +177,12 @@
|
|||
<Option link="0" />
|
||||
<Option target="default" />
|
||||
</Unit>
|
||||
<Unit filename="wx_pch.h">
|
||||
<Option compilerVar="CPP" />
|
||||
<Option compile="0" />
|
||||
<Option link="0" />
|
||||
<Option target="default" />
|
||||
</Unit>
|
||||
<Extensions />
|
||||
</Project>
|
||||
</CodeBlocks_project_file>
|
||||
|
|
@ -36,7 +36,10 @@ wxDEFINE_SCOPED_PTR_TYPE(wxZipEntry);
|
|||
const wxChar* _rootmatch[] = {
|
||||
wxT("rockbox.*"),
|
||||
wxT("ajbrec.ajz"),
|
||||
wxT("archos.mod")
|
||||
wxT("archos.mod"),
|
||||
wxT(".scrobbler.*"),
|
||||
wxT("battery_bench.txt"),
|
||||
wxT("battery.dummy"),
|
||||
};
|
||||
const wxArrayString* rootmatch = new wxArrayString(
|
||||
(size_t) (sizeof(_rootmatch) / sizeof(wxChar*)), _rootmatch);
|
||||
|
|
|
|||
|
|
@ -38,4 +38,4 @@ public:
|
|||
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ class wxPlatformPage : public wxWizardPageSimple
|
|||
public:
|
||||
wxPlatformPage(wxWizard *parent);
|
||||
virtual bool TransferDataFromWindow(void);
|
||||
|
||||
|
||||
public:
|
||||
wxListBox* PlatformListBox;
|
||||
};
|
||||
|
|
@ -17,17 +17,17 @@ class wxLocationPage : public wxWizardPageSimple
|
|||
{
|
||||
private:
|
||||
DECLARE_EVENT_TABLE()
|
||||
|
||||
|
||||
public:
|
||||
enum {
|
||||
ID_LOCATION_BTN = 1000,
|
||||
};
|
||||
|
||||
|
||||
public:
|
||||
wxLocationPage(wxWizard* parent);
|
||||
virtual bool TransferDataFromWindow(void);
|
||||
void OnLocationBtn(wxCommandEvent& event);
|
||||
|
||||
|
||||
public:
|
||||
wxStaticText* LocationText;
|
||||
};
|
||||
|
|
@ -47,7 +47,7 @@ public:
|
|||
virtual bool TransferDataFromWindow(void);
|
||||
void OnBuildBox(wxCommandEvent& event);
|
||||
void OnPageShown(wxWizardEvent& event);
|
||||
|
||||
|
||||
public:
|
||||
wxRadioBox* BuildRadioBox;
|
||||
wxStaticText* DetailText;
|
||||
|
|
@ -59,7 +59,7 @@ class wxFullUninstallPage : public wxWizardPageSimple
|
|||
public:
|
||||
wxFullUninstallPage(wxWizard *parent);
|
||||
virtual bool TransferDataFromWindow(void);
|
||||
|
||||
|
||||
public:
|
||||
wxCheckBox* FullCheckBox;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue