Merged changed pkg.m4 from edelib

ede-panel has alternative way of calling ede-about dialog

Dumped SettingsApplicator.* code from evoke. They are replaced with ede-settings-apply script
which should call all programs that needs to apply stored settings. This will reduce code entropy

evoke will call ede-settings-apply at the startup

ede-bell-conf modified to use "--apply" arg and to apply known settings

ede-desktop will start icon exec path via ede-launch

Fixed freebsd specific code in ede-panel's battery code
This commit is contained in:
Sanel Zukan
2009-03-03 11:47:30 +00:00
parent 4705a79876
commit 2ea73b6996
17 changed files with 132 additions and 163 deletions

View File

@@ -10,6 +10,10 @@
* See COPYING for details.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "icons/core.xpm"
#include "CrashDialog.h"
@@ -166,7 +170,7 @@ void CrashDialog::show_details(void) {
trace_buff->append("\n\n");
trace_buff->append("---------- short summary ----------\n");
trace_buff->append("\nEDE version: 2.0");
trace_buff->append("\nEDE version: " PACKAGE_VERSION);
trace_buff->append("\nSystem info: ");
trace_buff->append(get_uname().c_str());
@@ -271,9 +275,9 @@ void CrashDialog::run(void) {
if(appname || apppath) {
const char* p = (appname ? appname : apppath);
l.printf(_("Program '%s' just crashed !"), p);
l.printf(_("Program '%s' just crashed!"), p);
} else
l += _("Program just crashed !");
l += _("Program just crashed!");
l += _("\n\nYou can inspect details about this crash by clicking on 'Show details' below");
txt_box->copy_label(l.c_str());