QSettings putting Windows registry keys in the wrong location. Here's how I'm using it:
registry->setValue("TEST", "Test");
QSettings *registry = new QSettings("HKEY_CLASSES_ROOT\\SystemFileAssociations", QSettings::NativeFormat);
registry->setValue("TEST", "Test");
To copy to clipboard, switch view to plain text mode
It's putting a subkey "TEST" with a value "Test" properly, but it's saving it here instead:
HKEY_CURRENT_USER\Software\Classes\SystemFileAssoc iations (Ignore the space... the forum is messing it up)
How do I make it place the key where I tell it to place it, instead of where it thinks I should place it?
[edit:] Qt 4.7 on Windows 7 32bit Home and Premium
Bookmarks