public IPreferenceStore getMyPreferenceStore() {
try {
String baseDir = FileLocator.resolve(Platform.getInstanceLocation().getURL()).getFile();
String prefs = baseDir + ".metadata/.plugins/org.eclipse.core.runtime/.settings/net.sphene.goim.rcp.prefs";
PreferenceStore store = new PreferenceStore(prefs);
store.load();
} catch (IOException e) {
// Ignoring for now .. because the first start would always throw this exception.
//e.printStackTrace();
}