#include "ficha.h"#include "empresabase.h"Go to the source code of this file.
Defines | |
| #define | MY_EXPORT |
Functions | |
| MY_EXPORT int | Ficha_Ficha (Ficha *) |
| MY_EXPORT int | entryPoint (QApplication *) |
| #define MY_EXPORT |
Definition at line 24 of file pluginimpers.h.
| MY_EXPORT int entryPoint | ( | QApplication * | ) |
Cargamos el sistema de traducciones una vez pasado por las configuraciones generales
Definition at line 48 of file pluginclipboardbf.cpp.
00048 { 00049 _depura("Punto de Entrada del plugin de Clipboard", 0); 00051 QTranslator *traductor = new QTranslator(0); 00052 if (confpr->valor(CONF_TRADUCCION) == "locales") { 00053 traductor->load(QString("pluginclipboardbf_") + QLocale::system().name(), 00054 confpr->valor(CONF_DIR_TRADUCCION).toAscii().constData()); 00055 } else { 00056 QString archivo = "pluginclipboardbf_" + confpr->valor(CONF_TRADUCCION); 00057 traductor->load(archivo, confpr->valor(CONF_DIR_TRADUCCION).toAscii().constData()); 00058 } // end if 00059 theApp->installTranslator(traductor); 00060 _depura("END Punto de Entrada del plugin de Clipboard\n", 0); 00061 return 0; 00062 }
| MY_EXPORT int Ficha_Ficha | ( | Ficha * | l | ) |
| l |
Definition at line 45 of file pluginimpers.cpp.
References _depura().
00045 { 00046 _depura("Ficha_Ficha", 0); 00047 00048 EQToolButton *mui_imp = new EQToolButton(l); 00049 00050 _depura("END Ficha_Ficha", 0); 00051 return 0; 00052 }
1.5.1