Fixed some problems with the last commit (like I had to rewrite my

entire perl script, which was somehow deleted).


git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@751 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
coppro
2007-09-23 22:17:41 +00:00
parent 1f59376b54
commit ba7010ecec
3 changed files with 56 additions and 2 deletions
+2
View File
@@ -48,6 +48,8 @@ SymbolFontP SymbolFont::byName(const String& name) {
}
IMPLEMENT_REFLECTION(SymbolFont) {
REFLECT_BASE(Packaged);
REFLECT_ALIAS(300, "text align", "text alignment");
REFLECT_N("image font size", img_size);
+2 -2
View File
@@ -28,7 +28,7 @@ DECLARE_TYPEOF_COLLECTION(PackageVersionDataP);
/// Information on available packages
class PackageVersionData : public IntrusivePtrBase<PackageVersionData> {
public:
PackageVersionData() : is_installer(true) {}
PackageVersionData() {}
String name; ///< Name of the package
String description; ///< html description
@@ -402,7 +402,7 @@ void UpdatesWindow::onActionChange(wxCommandEvent& ev) {
}
void UpdatesWindow::onApplyChanges(wxCommandEvent& ev) {
FOREACH(update_version_data->packages, pack) {
FOR_EACH(pack, update_version_data->packages) {
PackageAction action = package_data[pack].second;
}
}