diff options
author | t-espave <unknown> | 2011-07-22 08:35:40 -0700 |
---|---|---|
committer | t-espave <unknown> | 2011-07-22 08:35:40 -0700 |
commit | 8c1f91ba9f4dd98a28a11a5213274e19ed0d8da5 (patch) | |
tree | f59fbf73e42b4e1e68b22330308681f6913305df /BCT/BytecodeTranslator/Phone | |
parent | 2360f6d9b0a7e52f89df8185033e97bb6033df94 (diff) |
double definition fix
changed functions to maps for control properties
Diffstat (limited to 'BCT/BytecodeTranslator/Phone')
-rw-r--r-- | BCT/BytecodeTranslator/Phone/PhoneCodeWrapperWriter.cs | 2 | ||||
-rw-r--r-- | BCT/BytecodeTranslator/Phone/PhoneNavigationTraverser.cs | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/BCT/BytecodeTranslator/Phone/PhoneCodeWrapperWriter.cs b/BCT/BytecodeTranslator/Phone/PhoneCodeWrapperWriter.cs index 17479b41..8bec1605 100644 --- a/BCT/BytecodeTranslator/Phone/PhoneCodeWrapperWriter.cs +++ b/BCT/BytecodeTranslator/Phone/PhoneCodeWrapperWriter.cs @@ -27,7 +27,7 @@ namespace BytecodeTranslator.Phone { * - might be slightly more efficient to nto return control until we know page navigation may have changed,
* but this requires a lot of knowledge (ie, will the called method call NavigationService or not)
*/
- createMainProcedure();
+ //createMainProcedure();
}
}
}
diff --git a/BCT/BytecodeTranslator/Phone/PhoneNavigationTraverser.cs b/BCT/BytecodeTranslator/Phone/PhoneNavigationTraverser.cs index 84b120ef..a88b6c85 100644 --- a/BCT/BytecodeTranslator/Phone/PhoneNavigationTraverser.cs +++ b/BCT/BytecodeTranslator/Phone/PhoneNavigationTraverser.cs @@ -50,6 +50,7 @@ namespace BytecodeTranslator.Phone { IsStatic=true,
Type=host.PlatformType.SystemString,
Name=host.NameTable.GetNameFor(PhoneCodeHelper.IL_CURRENT_NAVIGATION_URI_VARIABLE),
+ InternFactory= host.InternFactory,
},
},
};
@@ -216,6 +217,7 @@ namespace BytecodeTranslator.Phone { IsStatic= true,
Type = host.PlatformType.SystemString,
Name = host.NameTable.GetNameFor(PhoneCodeHelper.IL_CURRENT_NAVIGATION_URI_VARIABLE),
+ InternFactory=host.InternFactory,
},
},
};
@@ -246,6 +248,7 @@ namespace BytecodeTranslator.Phone { IsStatic= true,
Type = host.PlatformType.SystemString,
Name = host.NameTable.GetNameFor(PhoneCodeHelper.IL_CURRENT_NAVIGATION_URI_VARIABLE),
+ InternFactory=host.InternFactory,
},
},
};
|