Hi, On 17.12.2014 14:33, Rostislav Khlebnikov wrote: > Hi Matt, > > perhaps the place to look at is in berryInternalPlatform.cpp, where > lines 202-208 say the following: > > // FIXME: This is a quick-fix for Bug 16224 - Umlaut and other > special characters in install/binary path > // Assumption : linux provides utf8, windows provides ascii encoded > argv lists On Windows, argv is encoded using the current codepage, i.e. a locale-dependend 8-bit encoding (not ASCII). Thus... > #ifdef Q_OS_WIN > ProvisioningInfo > provInfo(QString::fromStdString(provisioningFile.c_str())); ... this code path ought to use QString::fromLocal8Bit.
Regards, Michael > #else > ProvisioningInfo provInfo(QString::fromUtf8(provisioningFile.c_str())); > #endif > > Not sure if it helps, but maybe it does :) > > Cheers, > Rostislav. > > On 17/12/2014 11:49, Clarkson, Matt wrote: >> Hi there, >> >> a colleague at UCL reported that, if the Windows user name contains unicode >> characters, then the default folder where the blueberry preferences are >> stored in is not written to correctly, and the application fails to run. >> Logging in with a different user name resolved this. >> >> Is this a known feature/issue? >> >> (This is a bit awkward for me to test, as I dont have a windows machine, and >> dont need unicode characters!) >> >> M >> >> >> ------------------------------------------------------------------------------ >> Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server >> from Actuate! Instantly Supercharge Your Business Reports and Dashboards >> with Interactivity, Sharing, Native Excel Exports, App Integration & more >> Get technology previously reserved for billion-dollar corporations, FREE >> http://pubads.g.doubleclick.net/gampad/clk?id=164703151&iu=/4140/ostg.clktrk >> _______________________________________________ >> mitk-users mailing list >> [email protected] >> https://lists.sourceforge.net/lists/listinfo/mitk-users > > ------------------------------------------------------------------------------ > Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server > from Actuate! Instantly Supercharge Your Business Reports and Dashboards > with Interactivity, Sharing, Native Excel Exports, App Integration & more > Get technology previously reserved for billion-dollar corporations, FREE > http://pubads.g.doubleclick.net/gampad/clk?id=164703151&iu=/4140/ostg.clktrk > _______________________________________________ > mitk-users mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/mitk-users ------------------------------------------------------------------------------ Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server from Actuate! Instantly Supercharge Your Business Reports and Dashboards with Interactivity, Sharing, Native Excel Exports, App Integration & more Get technology previously reserved for billion-dollar corporations, FREE http://pubads.g.doubleclick.net/gampad/clk?id=164703151&iu=/4140/ostg.clktrk _______________________________________________ mitk-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mitk-users
