Changeset 4c12e2ddfca9ac7acc9a45a820b8033a2aa99476
- Timestamp:
- 03/27/07 14:01:03 (6 years ago)
- Author:
- Philipp Kern <phil@…>
- Parents:
- dd060c9ad265fdec6b5b3f920b79aa1389146c60
- Children:
- eea9b757a19e3427e1e6da9023a8bf480b01a3f9
- git-committer:
- Philipp Kern <phil@0x539.de> / 2007-03-27T12:01:03Z+0000
- Message:
-
2007-03-27 Philipp Kern <phil@…>
- src/window.cpp: Output an error to the console if the zeroconf
daemon is unavailable instead of displaying an annoying message
box.
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
rdd060c9
|
r4c12e2d
|
|
| 1 | 1 | 2007-03-27 Philipp Kern <phil@0x539.de> |
| 2 | 2 | |
| 3 | | * src/preferences.cpp: Fix some mime types. It seems that they |
| 4 | | are inconsistent over different distributions, at least the |
| 5 | | fixed ones are commonly changed. |
| | 3 | * src/window.cpp: Output an error to the console if the zeroconf |
| | 4 | daemon is unavailable instead of displaying an annoying message |
| | 5 | box. |
| | 6 | |
| | 7 | 2007-03-27 Philipp Kern <phil@0x539.de> |
| | 8 | |
| | 9 | * src/preferences.cpp: Fix some mime types. It seems that they |
| | 10 | are inconsistent over different distributions, at least the |
| | 11 | fixed ones are commonly changed. |
| 6 | 12 | |
| 7 | 13 | 2007-03-24 Armin Burgmeier <armin@0x539.de> |
-
|
rf6acc66
|
r4c12e2d
|
|
| 179 | 179 | catch(std::runtime_error&) |
| 180 | 180 | { |
| 181 | | display_error(_("Howl initialisation failed. Probably you need " |
| | 181 | std::cerr << _("Howl initialisation failed. Probably you need " |
| 182 | 182 | "to run mDNSResponder as root prior to Gobby. " |
| 183 | | "Zeroconf support is deactivated for this session."), |
| 184 | | Gtk::MESSAGE_WARNING); |
| | 183 | "Zeroconf support is deactivated for this session."); |
| | 184 | std::cerr << std::endl; |
| 185 | 185 | m_zeroconf.reset(); |
| 186 | 186 | } |