Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Remove superfluous line from the previous commit. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | designOptions |
Files: | files | file ages | folders |
SHA1: |
a5e6c41c19bba2c4d2c69425ccaa8bd8 |
User & Date: | mistachkin 2014-08-01 18:58:08.966 |
Context
2014-08-02
| ||
00:03 | Merge updates from trunk. check-in: 9689cc6323 user: mistachkin tags: designOptions | |
2014-08-01
| ||
18:58 | Remove superfluous line from the previous commit. check-in: a5e6c41c19 user: mistachkin tags: designOptions | |
18:21 | Actually, refactor the previous commit to make use of the LoadProperties method override. check-in: 6d6e89424f user: mistachkin tags: designOptions | |
Changes
Changes to SQLite.Designer/SQLiteConnectionUIControl.cs.
︙ | ︙ | |||
97 98 99 100 101 102 103 | ConnectionProperties["datetimeformat"] = "Ticks"; else ConnectionProperties["datetimeformat"] = "JulianDay"; } private void provider_Changed(object sender, EventArgs e) { | < < < | 97 98 99 100 101 102 103 104 105 106 107 108 109 110 | ConnectionProperties["datetimeformat"] = "Ticks"; else ConnectionProperties["datetimeformat"] = "JulianDay"; } private void provider_Changed(object sender, EventArgs e) { object item = providerComboBox.SelectedItem; if (item != null) SQLiteOptions.SetProviderName(item.ToString()); } private void sync_Changed(object sender, EventArgs e) |
︙ | ︙ |