Hello Jon,
On Mon, 24 Jan 2005 06:46:11 -0800 Jon Keating <[EMAIL PROTECTED]> wrote: > Update of /cvsroot/licq/qt-gui/src > In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12410 > > Modified Files: > plugindlg.cpp plugindlg.h > Log Message: > New Plugin Manager Dialog to have better support for Protocol plugins. > Also, looks better for management of loaded/enabled plugins of both all > kinds. > > Doesn't have a way to show details at the moment. Perhaps a right click > pop-up menu would do the trick? Double clicking allows you to edit the > config file of the plugin. when double-clicking to edit the plugin config file, you get an error (file doesn't exist), which is obvious seems a path separator (/) is missing between the licq dir and the config filename. The following patch does fix this trivial issue: diff -urN qt-gui.orig/src/plugindlg.cpp qt-gui/src/plugindlg.cpp --- qt-gui.orig/src/plugindlg.cpp 2005-01-27 14:04:04.000000000 +0100 +++ qt-gui/src/plugindlg.cpp 2005-01-27 13:58:52.000000000 +0100 @@ -232,7 +232,7 @@ } QString f; - f.sprintf("%s%s", BASE_DIR, (*it)->ConfigFile()); + f.sprintf("%s/%s", BASE_DIR, (*it)->ConfigFile()); (void) new EditFileDlg(f); } Regards, -- wwp ------------------------------------------------------- This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting Tool for open source databases. Create drag-&-drop reports. Save time by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc. Download a FREE copy at http://www.intelliview.com/go/osdn_nl _______________________________________________ Licq-devel mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/licq-devel