[gtk] Don't call string() on strings

pull/3/head
Hleb Valoshka 2019-08-17 10:00:48 +03:00 committed by eyvallah
parent ca39d82b09
commit 0130655d87
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ GtkSplashProgressNotifier::GtkSplashProgressNotifier(SplashData* _splash) :
void GtkSplashProgressNotifier::update(const string& filename)
{
splashSetText(splash, filename.string().c_str());
splashSetText(splash, filename.c_str());
}
GtkSplashProgressNotifier::~GtkSplashProgressNotifier() {};