modernize: Migrate action-related things to PMF connects
[quassel.git] / src / main / main.cpp
index c8185b0..5ec89c5 100644 (file)
 
 int main(int argc, char **argv)
 {
-    // We need to explicitly initialize the required resources when linking statically
-#ifndef BUILD_QTUI
-    Q_INIT_RESOURCE(sql);
-#endif
-#ifndef BUILD_CORE
-    Q_INIT_RESOURCE(pics);
-    Q_INIT_RESOURCE(hicolor_icons);
-#endif
-
-#ifdef EMBED_DATA
-    Q_INIT_RESOURCE(i18n);
-# ifndef BUILD_CORE
-    Q_INIT_RESOURCE(data);
-    Q_INIT_RESOURCE(breeze_icons);
-    Q_INIT_RESOURCE(breeze_dark_icons);
-#  ifdef WITH_OXYGEN_ICONS
-      Q_INIT_RESOURCE(oxygen_icons);
-#  endif
-#  ifdef WITH_BUNDLED_ICONS
-      Q_INIT_RESOURCE(breeze_icon_theme);
-      Q_INIT_RESOURCE(breeze_dark_icon_theme);
-#   ifdef WITH_OXYGEN_ICONS
-      Q_INIT_RESOURCE(oxygen_icon_theme);
-#   endif
-#  endif
-# endif
-#endif
-
     // Set umask so files are created with restricted permissions
 #ifdef HAVE_UMASK
     umask(S_IRWXG | S_IRWXO);