We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3617018 commit 9bc56c5Copy full SHA for 9bc56c5
source/gx/tilix/terminal/password.d
@@ -172,7 +172,7 @@ private:
172
string uuid = randomUUID().toString();
173
pending[uuid] = c;
174
import gtkc.glib;
175
- HashTable attributes = new HashTable(g_str_hash, g_str_equal);
+ HashTable attributes = new HashTable(&g_str_hash, &g_str_equal);
176
immutable(char*) uuidz = toStringz(uuid);
177
attributes.insert(cast(void*)attrID, cast(void*)uuidz);
178
attributes.insert(cast(void*)attrDescription, cast(void*)descriptionValue);
@@ -285,7 +285,7 @@ private:
285
286
HashTable createHashTable() {
287
288
- return new HashTable(g_str_hash, g_str_equal);
+ return new HashTable(&g_str_hash, &g_str_equal);
289
}
290
291
void createSchema() {
0 commit comments