Changeset 4c12e2ddfca9ac7acc9a45a820b8033a2aa99476

Show
Ignore:
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:
2 modified

Legend:

Unmodified
Added
Removed
  • ChangeLog

    rdd060c9 r4c12e2d  
    112007-03-27  Philipp Kern <phil@0x539.de> 
    22 
    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 
     72007-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. 
    612 
    7132007-03-24  Armin Burgmeier  <armin@0x539.de> 
  • src/window.cpp

    rf6acc66 r4c12e2d  
    179179        catch(std::runtime_error&) 
    180180        { 
    181                 display_error(_("Howl initialisation failed. Probably you need " 
     181                std::cerr << _("Howl initialisation failed. Probably you need " 
    182182                        "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; 
    185185                m_zeroconf.reset(); 
    186186        }