i'm trying to start a kdesrc-build built plasma-mobile from 27apr13 git, built on debian linux using kdesrc-build from a mix of local libs and kde 4.10.2 stable branch. kde runs well, but plasma won't start. I've included below the 3 scripts used to start "plasma-device" and set the environment and the .xsessions-error log that results. Please help.<br>
<br>FOLLOWING IS THE FIRST OF 3 SCRIPTS USED TO START MY LOCAL BUILD AND SET UP THE ENVIRONMENT.<br><br>paul@localhost:~$ cat .xsession-mobile.sh <br><br>#!/bin/sh<br># A script to start the kde workspace.<br># Written by Michael Jansen and Michael Pyne<br>
#<br># Use by copying this script to ~/.xsession (this will be done for you by<br># kdesrc-build and/or kdesrc-build-setup, later).<br>#<br># From there, select "custom" session when logging in, in order to login using<br>
# this script.<br>#<br># If more user customizations to the environment are needed, create a file<br># .xsession-local, which will be sourced just prior to running KDE. This can<br># read .bashrc, just set a few vars, etc.<br>
<br>XDG_CONFIG_HOME="${XDG_CONFIG_HOME:-$HOME/.config}"<br><br>. "${XDG_CONFIG_HOME}/kde-env-master.sh" # Should be installed by kdesrc-build<br><br># See .kde-env-master.sh for details on the kdesrc-build: filter stuff<br>
<br>if ! test -n "$KDESRC_BUILD_TESTING"; then # kdesrc-build: filter<br># Read in user-specific customizations<br>if test -f "$HOME/.xsession-local"; then<br> . "$HOME/.xsession-local"<br>
fi<br><br>#<br>### Start the standard kde login script.<br>#<br>#"$kde_prefix/bin/startkde"<br>#"$kde_prefix/bin/plasma-device --nodesktop --fullscreen --opengl --screen 1024x600"<br>"$kde_prefix/bin/plasma-device"<br>
#/home/paul/kde4/bin/plasma-device<br><br># If you experience problems on logout it is sometimes helpful to make copies<br># of the xsession-errors file on logout.<br>cp $HOME/.xsession-errors $HOME/.xsession-errors-mobile-`date +"%Y%m%d%H%M"`<br>
<br># Use user-specific logout if present<br>if test -f "$HOME/.xsession-logout"; then<br> . "$HOME/.xsession-logout"<br>fi<br>fi # kdesrc-build: filter<br><br>FOLLOWING IS THE SECOND OF 3 SCRIPTS USED TO START MY LOCAL BUILD AND SET UP THE ENVIRONMENT.<br>
<br>paul@localhost:~$ cat .config/kde-env-master.sh <br><br>#!/bin/sh <br># # This sets the various environment variables needed to start a KDE desktop <br># built by kdesrc-build, or to run programs/build programs/etc. in the same <br>
# environment. <br># # This should not produce any output in order to make it usable by<br># non-interactive scripts. <br># # See also the sample xsession setup script which requires this file. <br># # Use by copying this script to $XDG_CONFIG_HOME/kde-env-master.sh (this will <br>
# be done for you by kdesrc-build and/or kdesrc-build-setup, later). 99% of the <br># time this means ~/.config/kde-env-master.sh <br># # NOTHING IN THIS FILE IS MODIFIABLE, OTHERWISE WARNINGS WILL BE GENERATED <br># === Load user environment settings (i.e. not set through kdesrc-buildrc) XDG_CONFIG_HOME="${XDG_CONFIG_HOME:-$HOME/.config}" <br>
# ALL USER MODS GO HERE ↴ <br>if test -f "$XDG_CONFIG_HOME/kde-env-user.sh"; then<br> . "$XDG_CONFIG_HOME/kde-env-user.sh" <br>fi <br># === Modifiable variables. Should be set automatically by kdesrc-build based <br>
# on kdesrc-buildrc settings. Nothing below this line is user-modifiable! <br># kdesrc-build: filter | The KDESRC_BUILD_TESTING stuff is to allow the script to <br># kdesrc-build: filter | be executable by testsuite. It is filtered from destination.<br>
if ! test -n "$KDESRC_BUILD_TESTING"; then # kdesrc-build: filter <br># Where KDE libraries and applications are installed to. <br>kde_prefix="$HOME/kde4" # E.g. "$HOME/kde-4" <br># Where Qt is installed to. If using the system Qt, leave blank or set to <br>
# 'auto' and this script will try to auto-detect. <br>qt_prefix="/usr" # E.g. "$HOME/qt4" or "/usr" on many systems. <br>else # kdesrc-build: filter <br>kde_prefix="$HOME/kde" # kdesrc-build: filter <br>
qt_prefix="/usr" # kdesrc-build: filter <br>fi # kdesrc-build: filter <br># === End of modifiable variables. <br># Set defaults if these are unset or null. ':' is a null command <br>: ${lib_suffix:=""} <br>
: ${user_path:=""} <br>: ${KDEHOME:="$HOME/.kde4-self"} <br><br># Find system Qt <br>if test -z "$qt_prefix"; then <br> # Find right qmake <br> for qmake_candidate in qmake-qt4 qmake4 qmake; do <br>
if ${qmake_candidate} --version >/dev/null 2>&1; then <br> qmake="$qmake_candidate" <br> break; <br> fi <br> done <br> qt_prefix=$(${qmake} -query QT_INSTALL_PREFIX 2>/dev/null) <br>
test -z "$qt_prefix" && qt_prefix="/usr" # Emergency fallback? <br> echo "Using Qt found in $qt_prefix" <br>fi <br># Try to auto-determine lib suffix if not set. This requires KDE to already <br>
# have been installed though. <br>if test -z "$lib_suffix" && test -x "$kde_prefix/bin/kde4-config"; then <br> lib_suffix=$("$kde_prefix/bin/kde4-config" --libsuffix 2>/dev/null) <br>
fi <br><br># Add path elements to a colon-separated environment variable, <br># taking care not to add extra unneeded colons. <br># Should be sh-compatible. <br># Can't use function keyword in Busybox-sh <br>path_add() <br>
{<br> eval curVal=\$'{'$1'-}' <br><br> if [ -n "$curVal" ]; then <br> eval "$1"="$2:$curVal"; <br> else <br> eval "$1"="$2" <br> fi <br>
} <br><br># Initialize some variables based on Qt and KDE install paths. <br># Since this should be run as .xsession there's no guarantee of any <br># user-specific variables being set already. <br>libname="lib$lib_suffix" <br>
<br># Now add the necessary directories, starting with Qt (although we don't add Qt <br># if it's system Qt to avoid moving /usr up in the PATH. <br>if test "x$qt_prefix" != "x/usr"; then <br> path_add "PATH" "$qt_prefix/bin"; <br>
path_add "LD_LIBRARY_PATH" "$qt_prefix/$libname"; <br> path_add "PKG_CONFIG_PATH" "$qt_prefix/$libname/pkgconfig"; <br> path_add "MANPATH" "$qt_prefix/share/man"; <br>
fi <br><br># Now add KDE-specific paths. <br>path_add "PATH" "$kde_prefix/bin"; <br>path_add "LD_LIBRARY_PATH" "$kde_prefix/$libname"; <br>path_add "PKG_CONFIG_PATH" "$kde_prefix/$libname/pkgconfig"; <br>
path_add "MANPATH" "$kde_prefix/share/man"; <br>path_add "CMAKE_PREFIX_PATH" "$kde_prefix"; <br>path_add "KDEDIRS" "$kde_prefix"; <br>path_add "QML_IMPORT_PATH" "$kde_prefix/$libname/kde4/imports"; <br>
path_add "STRIGI_PLUGIN_PATH" "$kde_prefix/$libname/strigi"; <br><br># For Python bindings support. <br>path_add "PYTHONPATH" "$kde_prefix/$libname/site-packages"; <br><br>
# <a href="http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html">http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html</a> <br>path_add "XDG_DATA_DIRS" "$kde_prefix/share"; <br>
path_add "XDG_CONFIG_DIRS" "$kde_prefix/etc/xdg"; <br><br># <br>### Some Convenience stuff <br># <br>if test -n "$user_path"; then <br> path_add "PATH" "$user_path"<br>
fi <br><br>test -d "$HOME/local/bin" && path_add "PATH" "$HOME/local/bin" <br>test -d "$HOME/local/man" && path_add "MANPATH" "$HOME/local/man" <br>
<br># Finally, export the variables. <br>export CMAKE_PREFIX_PATH <br>export KDEDIRS export LD_LIBRARY_PATH <br>export PATH export PKG_CONFIG_PATH <br>export PYTHONPATH <br>export QML_IMPORT_PATH <br>export STRIGI_PLUGIN_PATH <br>
export XDG_DATA_DIRS <br>export XDG_CONFIG_DIRS <br>export MANPATH <br>export KDEHOME <br><br>if ! test -e "$KDEHOME"; then <br> mkdir -p "$KDEHOME" >/dev/null 2>&1 <br>fi <br><br>FOLLOWING IS THE THIRD OF 3 SCRIPTS USED TO START MY LOCAL BUILD AND SET UP THE ENVIRONMENT.<br>
<br>paul@localhost:~$ cat .config/kde-env-user.sh<br><br>#!/bin/sh <br># # This is a sample user customization script. Unlike other example environment <br># setup files, this one can be modified by the user, and kdesrc-build will not <br>
# warn about it or overwrite it. <br># # This file should be installed to $XDG_CONFIG_HOME/kde-env-user.sh (which <br># normally means ~/.config/kde-env-user.sh) <br># # As long as it is found here, the kdesrc-build sample session and environment <br>
# setup scripts will pull in settings from that file first. <br>### Variables supported by the environment script: <br># Directory to use for KDE configuration and other user customizations. <br># Syntax uses existing value if set, otherwise sets a different one. <br>
# You can also leave blank, but this risks interfering with system KDE. <br>KDEHOME="$HOME/.kde4-self" <br># "Bitness" suffix to use for library directories. If left blank, will try to <br># auto-detect from installed KDE's compiled defaults, which may still leave # this blank.<br>
lib_suffix="32" <br># Or 32, or 64, as appropriate for your system. <br># lib_suffix="32" <br># lib_suffix="64" <br># Additional paths to add to PATH, can be left blank. <br>user_path="" # Set to colon-separated PATH to add to the Qt/KDE paths. <br>
### KDE-specific environment variables: <br># KDE supports various environment variables that might be useful for your <br># kdesrc-build desktop. See also: <br># <a href="http://techbase.kde.org/KDE_System_Administration/Environment_Variables">http://techbase.kde.org/KDE_System_Administration/Environment_Variables</a> <br>
KDE_COLOR_DEBUG=1 <br>export KDE_COLOR_DEBUG # Be sure to "export" variables you set yourself. <br># If more user customizations to the environment are needed, you can add them <br># here.<br><br>FOLLOWING IS MY ERROR LOG AS IT IS IN ~/.xsession-errors<br>
<br>paul@localhost:~$ cat .xsession-errors-mobile-201304270752<br><br> Xsession: X session started for paul at Sat Apr 27 07:52:09 EDT 2013 localuser:paul being added to access control list QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave. QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave. Connecting to deprecated signal QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString) QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave. QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave. kbuildsycoca4 running... kbuildsycoca4(10401) KBuildSycoca::checkTimestamps: checking file timestamps kbuildsycoca4(10401) KBuildSycoca::checkTimestamps: timestamps check ok kbuildsycoca4(10401) kdemain: Emitting notifyDatabaseChanged () QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave. QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave. Module "resources" is registered Module "activities" is registered Module "features" is registered This is the current thread id for Activities 2973567856 QThread(0x9a300f8) These are the disabled plugins: ("activitymanager_plugin_dummy", "activitymanager_plugin_nepomuk") Initializing plugin: "activitymanager_plugin_globalshortcuts" This is the current thread id for Activities 3020662544 QThread(0x990cee0) Object::connect: No such signal QDBusAbstractInterface::recommendationsChanged() QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave. QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave. link XMLID_34_ hasn't been detected! link XMLID_34_ hasn't been detected! link XMLID_36_ hasn't been detected! file:///home/paul/kde4/share/apps/plasma/packages/org.kde.active.contour-tablet-homescreen/contents/ui/SystrayPanel.qml:138: Unable to assign [undefined] to int fillMode Initializing plugin: "activitymanager_plugin_slc" Initializing plugin: "activitymanager_plugin_virtualdesktopswitch" VirtualDesktopSwitch::init Module "org.kde.ActivityManager.VirtualDesktopSwitch" is registered Initializing plugin: "activitymanager_plugin_activityranking" QSqlDatabase: QSQLITE driver not loaded QSqlDatabase: available drivers: QSQLITE3 QMYSQL3 QMYSQL Can't open sqlite database QSqlError(-1, "Driver not loaded", "Driver not loaded") "/home/paul/.kde4-self/share/apps/activitymanager/activityranking/database" running in thread ActivityRanking Initializing plugin: "activitymanager_plugin_sqlite" Module "org.kde.ActivityManager.Resources.Scoring" is registered QSqlDatabase: QSQLITE driver not loaded QSqlDatabase: available drivers: QSQLITE3 QMYSQL3 QMYSQL Failed to open the database "/home/paul/.kde4-self/share/apps/activitymanager/resources/database" QSqlError(-1, "Driver not loaded", "Driver not loaded") QSqlQuery::exec: database not open The database doesn't exist, it is being created QSqlQuery::exec: database not open QSqlQuery::exec: database not open QSqlQuery::exec: database not open QSqlQuery::exec: database not open Upgrading the database version to 1.01 QSqlQuery::exec: database not open QSqlQuery::exec: database not open QSqlQuery::exec: database not open QDBusConnection: name 'org.kde.kglobalaccel' had owner '' but we thought it was ':1.8' QSqlQuery::exec: database not open plasma-device(10394)/libplasma Plasma::isPluginVersionCompatible: unversioned plugin detected, may result in instability plasma-device(10394)/libplasma Plasma::isPluginVersionCompatible: unversioned plugin detected, may result in instability plasma-device(10394)/libplasma Plasma::isPluginVersionCompatible: unversioned plugin detected, may result in instability plasma-device(10394)/libplasma Plasma::isPluginVersionCompatible: unversioned plugin detected, may result in instability plasma-device(10394)/libplasma Plasma::isPluginVersionCompatible: unversioned plugin detected, may result in instability plasma-device(10394)/libplasma Plasma::isPluginVersionCompatible: unversioned plugin detected, may result in instability VirtualDesktopSwitch::currentActivityChanged QFileSystemWatcher: failed to add paths: /home/paul/.kde4-self/share/config/activitymanager-pluginsrc plasma-device(10394) MetadataModelPrivate::doQuery: Sparql query: "" plasma-device(10394) DeclarativeAppletScript::qmlCreationFinished: Could not load org.kde.toolbox package. plasma-device(10394)/kdecore (KConfigSkeleton) KCoreConfigSkeleton::writeConfig: plasma-device(10394) DeclarativeAppletScript::qmlCreationFinished: Could not load org.kde.toolbox package. plasma-device(10394) MetadataModelPrivate::doQuery: Sparql query: "" file:///home/paul/kde4/share/apps/plasma/plasmoids/org.kde.active.activityscreen/contents/ui/PlasmoidGroup.qml:88: TypeError: Result of expression 'action' [null] is not an object. file:///home/paul/kde4/share/apps/plasma/plasmoids/org.kde.active.activityscreen/contents/ui/PlasmoidGroup.qml:71: TypeError: Result of expression 'action' [null] is not an object. file:///home/paul/kde4/share/apps/plasma/plasmoids/org.kde.active.activityscreen/contents/ui/PlasmoidGroup.qml:28: Unable to assign [undefined] to double scale plasma-device(10394) DeclarativeAppletScript::qmlCreationFinished: Could not load org.kde.toolbox package. plasma-device(10394) MetadataModelPrivate::doQuery: Sparql query: "" file:///home/paul/kde4/share/apps/plasma/plasmoids/org.kde.active.activityscreen/contents/ui/PlasmoidGroup.qml:88: TypeError: Result of expression 'action' [null] is not an object. file:///home/paul/kde4/share/apps/plasma/plasmoids/org.kde.active.activityscreen/contents/ui/PlasmoidGroup.qml:71: TypeError: Result of expression 'action' [null] is not an object. file:///home/paul/kde4/share/apps/plasma/plasmoids/org.kde.active.activityscreen/contents/ui/PlasmoidGroup.qml:88: TypeError: Result of expression 'action' [null] is not an object. file:///home/paul/kde4/share/apps/plasma/plasmoids/org.kde.active.activityscreen/contents/ui/PlasmoidGroup.qml:71: TypeError: Result of expression 'action' [null] is not an object. file:///home/paul/kde4/share/apps/plasma/plasmoids/org.kde.active.activityscreen/contents/ui/PlasmoidGroup.qml:28: Unable to assign [undefined] to double scale file:///home/paul/kde4/share/apps/plasma/plasmoids/org.kde.active.activityscreen/contents/ui/PlasmoidGroup.qml:28: Unable to assign [undefined] to double scale plasma-device(10394) DeclarativeAppletScript::qmlCreationFinished: Could not load org.kde.toolbox package. plasma-device(10394)/libplasma Plasma::PackagePrivate::isValid: Could not find required directory images QImage::scaled: Image is a null image file:///home/paul/kde4/lib/kde4/imports/org/kde/plasma/components/SectionScroller.qml:103: TypeError: Result of expression 'listView' [null] is not an object. file:///home/paul/kde4/lib/kde4/imports/org/kde/plasma/components/SectionScroller.qml:175: ReferenceError: Can't find variable: sectionsRepeater file:///home/paul/kde4/lib/kde4/imports/org/kde/plasma/components/SectionScroller.qml:103: Error: Cannot assign [undefined] to QString file:///home/paul/kde4/lib/kde4/imports/org/kde/plasma/extras/ScrollArea.qml:120: TypeError: Result of expression 'horizontalScrollBar' [null] is not an object. file:///home/paul/kde4/lib/kde4/imports/org/kde/plasma/extras/ScrollArea.qml:120: TypeError: Result of expression 'horizontalScrollBar' [null] is not an object. file:///home/paul/kde4/share/apps/plasma/plasmoids/notifier/contents/ui/devicenotifier.qml:224:13: QML QDeclarativeListView_QML_87: Possible anchor loop detected on fill. file:///home/paul/kde4/share/apps/plasma/plasmoids/notifier/contents/ui/devicenotifier.qml:224:13: QML QDeclarativeListView_QML_87: Possible anchor loop detected on fill. file:///home/paul/kde4/share/apps/plasma/plasmoids/notifier/contents/ui/devicenotifier.qml:224:13: QML QDeclarativeListView_QML_87: Possible anchor loop detected on fill. file:///home/paul/kde4/share/apps/plasma/plasmoids/notifier/contents/ui/devicenotifier.qml:224:13: QML QDeclarativeListView_QML_87: Possible anchor loop detected on fill. file:///home/paul/kde4/share/apps/plasma/plasmoids/notifier/contents/ui/devicenotifier.qml:224:13: QML QDeclarativeListView_QML_87: Possible anchor loop detected on fill. file:///home/paul/kde4/share/apps/plasma/plasmoids/notifier/contents/ui/devicenotifier.qml:224:13: QML QDeclarativeListView_QML_87: Possible anchor loop detected on fill. file:///home/paul/kde4/share/apps/plasma/plasmoids/notifier/contents/ui/devicenotifier.qml:224:13: QML QDeclarativeListView_QML_87: Possible anchor loop detected on fill. X Error: BadValue (integer parameter out of range for operation) 2 Major opcode: 53 (X_CreatePixmap) Resource id: 0x0 X Error: BadDrawable (invalid Pixmap or Window parameter) 9 Major opcode: 14 (X_GetGeometry) Resource id: 0xa000be X Error: BadWindow (invalid Window parameter) 3 Major opcode: 3 (X_GetWindowAttributes) Resource id: 0xb4f9632e QPainter::begin: Cannot paint on a null pixmap QPainter::end: Painter not active, aborted X Error: BadDrawable (invalid Pixmap or Window parameter) 9 Extension: 148 (RENDER) Minor opcode: 4 (RenderCreatePicture) Resource id: 0xa000be X Error: BadValue (integer parameter out of range for operation) 2 Major opcode: 53 (X_CreatePixmap) Resource id: 0x0 X Error: BadDrawable (invalid Pixmap or Window parameter) 9 Major opcode: 14 (X_GetGeometry) Resource id: 0xa000c0 X Error: BadWindow (invalid Window parameter) 3 Major opcode: 3 (X_GetWindowAttributes) Resource id: 0xbfe02138 QPainter::begin: Cannot paint on a null pixmap QPainter::end: Painter not active, aborted X Error: BadDrawable (invalid Pixmap or Window parameter) 9 Extension: 148 (RENDER) Minor opcode: 4 (RenderCreatePicture) Resource id: 0xa000c0 X Error: BadValue (integer parameter out of range for operation) 2 Major opcode: 53 (X_CreatePixmap) Resource id: 0x0 X Error: BadDrawable (invalid Pixmap or Window parameter) 9 Major opcode: 14 (X_GetGeometry) Resource id: 0xa000c2 X Error: BadWindow (invalid Window parameter) 3 Major opcode: 3 (X_GetWindowAttributes) Resource id: 0xbfe02138 QPainter::begin: Cannot paint on a null pixmap QPainter::end: Painter not active, aborted X Error: BadDrawable (invalid Pixmap or Window parameter) 9 Extension: 148 (RENDER) Minor opcode: 4 (RenderCreatePicture) Resource id: 0xa000c2 X Error: BadValue (integer parameter out of range for operation) 2 Major opcode: 53 (X_CreatePixmap) Resource id: 0x0 X Error: BadDrawable (invalid Pixmap or Window parameter) 9 Major opcode: 14 (X_GetGeometry) Resource id: 0xa000c4 X Error: BadWindow (invalid Window parameter) 3 Major opcode: 3 (X_GetWindowAttributes) Resource id: 0xbfe02138 QPainter::begin: Cannot paint on a null pixmap QPainter::end: Painter not active, aborted X Error: BadDrawable (invalid Pixmap or Window parameter) 9 Extension: 148 (RENDER) Minor opcode: 4 (RenderCreatePicture) Resource id: 0xa000c4 X Error: BadValue (integer parameter out of range for operation) 2 Major opcode: 53 (X_CreatePixmap) Resource id: 0x0 X Error: BadDrawable (invalid Pixmap or Window parameter) 9 Major opcode: 14 (X_GetGeometry) Resource id: 0xa000c6 X Error: BadWindow (invalid Window parameter) 3 Major opcode: 3 (X_GetWindowAttributes) Resource id: 0xbfe02138 QPainter::begin: Cannot paint on a null pixmap QPainter::end: Painter not active, aborted X Error: BadDrawable (invalid Pixmap or Window parameter) 9 Extension: 148 (RENDER) Minor opcode: 4 (RenderCreatePicture) Resource id: 0xa000c6 X Error: BadValue (integer parameter out of range for operation) 2 Major opcode: 53 (X_CreatePixmap) Resource id: 0x0 X Error: BadDrawable (invalid Pixmap or Window parameter) 9 Major opcode: 14 (X_GetGeometry) Resource id: 0xa000c8 X Error: BadWindow (invalid Window parameter) 3 Major opcode: 3 (X_GetWindowAttributes) Resource id: 0xbfe02138 QPainter::begin: Cannot paint on a null pixmap QPainter::end: Painter not active, aborted X Error: BadDrawable (invalid Pixmap or Window parameter) 9 Extension: 148 (RENDER) Minor opcode: 4 (RenderCreatePicture) Resource id: 0xa000c8 X Error: BadValue (integer parameter out of range for operation) 2 Major opcode: 53 (X_CreatePixmap) Resource id: 0x0 X Error: BadDrawable (invalid Pixmap or Window parameter) 9 Major opcode: 14 (X_GetGeometry) Resource id: 0xa000ca X Error: BadWindow (invalid Window parameter) 3 Major opcode: 3 (X_GetWindowAttributes) Resource id: 0xbfe02138 QPainter::begin: Cannot paint on a null pixmap QPainter::end: Painter not active, aborted X Error: BadDrawable (invalid Pixmap or Window parameter) 9 Extension: 148 (RENDER) Minor opcode: 4 (RenderCreatePicture) Resource id: 0xa000ca X Error: BadValue (integer parameter out of range for operation) 2 Major opcode: 53 (X_CreatePixmap) Resource id: 0x0 X Error: BadDrawable (invalid Pixmap or Window parameter) 9 Major opcode: 14 (X_GetGeometry) Resource id: 0xa000cc X Error: BadWindow (invalid Window parameter) 3 Major opcode: 3 (X_GetWindowAttributes) Resource id: 0xbfe02138 QPainter::begin: Cannot paint on a null pixmap QPainter::end: Painter not active, aborted X Error: BadDrawable (invalid Pixmap or Window parameter) 9 Extension: 148 (RENDER) Minor opcode: 4 (RenderCreatePicture) Resource id: 0xa000cc X Error: BadValue (integer parameter out of range for operation) 2 Major opcode: 53 (X_CreatePixmap) Resource id: 0x0 X Error: BadDrawable (invalid Pixmap or Window parameter) 9 Major opcode: 14 (X_GetGeometry) Resource id: 0xa000d0 X Error: BadWindow (invalid Window parameter) 3 Major opcode: 3 (X_GetWindowAttributes) Resource id: 0x0 X Error: BadDrawable (invalid Pixmap or Window parameter) 9 Extension: 148 (RENDER) Minor opcode: 4 (RenderCreatePicture) Resource id: 0xa000d0 X Error: BadValue (integer parameter out of range for operation) 2 Major opcode: 53 (X_CreatePixmap) Resource id: 0x0 X Error: BadDrawable (invalid Pixmap or Window parameter) 9 Major opcode: 14 (X_GetGeometry) Resource id: 0xa000d2 X Error: BadWindow (invalid Window parameter) 3 Major opcode: 3 (X_GetWindowAttributes) Resource id: 0x0 X Error: BadDrawable (invalid Pixmap or Window parameter) 9 Extension: 148 (RENDER) Minor opcode: 4 (RenderCreatePicture) Resource id: 0xa000d2 X Error: BadValue (integer parameter out of range for operation) 2 Major opcode: 53 (X_CreatePixmap) Resource id: 0x0 X Error: BadDrawable (invalid Pixmap or Window parameter) 9 Major opcode: 14 (X_GetGeometry) Resource id: 0xa000d4 X Error: BadWindow (invalid Window parameter) 3 Major opcode: 3 (X_GetWindowAttributes) Resource id: 0x0 X Error: BadDrawable (invalid Pixmap or Window parameter) 9 Extension: 148 (RENDER) Minor opcode: 4 (RenderCreatePicture) Resource id: 0xa000d4 X Error: BadValue (integer parameter out of range for operation) 2 Major opcode: 53 (X_CreatePixmap) Resource id: 0x0 X Error: BadDrawable (invalid Pixmap or Window parameter) 9 Major opcode: 14 (X_GetGeometry) Resource id: 0xa000d6 X Error: BadWindow (invalid Window parameter) 3 Major opcode: 3 (X_GetWindowAttributes) Resource id: 0x0 X Error: BadDrawable (invalid Pixmap or Window parameter) 9 Extension: 148 (RENDER) Minor opcode: 4 (RenderCreatePicture) Resource id: 0xa000d6 X Error: BadValue (integer parameter out of range for operation) 2 Major opcode: 53 (X_CreatePixmap) Resource id: 0x0 X Error: BadDrawable (invalid Pixmap or Window parameter) 9 Major opcode: 14 (X_GetGeometry) Resource id: 0xa000d8 X Error: BadWindow (invalid Window parameter) 3 Major opcode: 3 (X_GetWindowAttributes) Resource id: 0x0 X Error: BadDrawable (invalid Pixmap or Window parameter) 9 Extension: 148 (RENDER) Minor opcode: 4 (RenderCreatePicture) Resource id: 0xa000d8 X Error: BadValue (integer parameter out of range for operation) 2 Major opcode: 53 (X_CreatePixmap) Resource id: 0x0 X Error: BadDrawable (invalid Pixmap or Window parameter) 9 Major opcode: 14 (X_GetGeometry) Resource id: 0xa000da X Error: BadWindow (invalid Window parameter) 3 Major opcode: 3 (X_GetWindowAttributes) Resource id: 0x0 X Error: BadDrawable (invalid Pixmap or Window parameter) 9 Extension: 148 (RENDER) Minor opcode: 4 (RenderCreatePicture) Resource id: 0xa000da file:///home/paul/kde4/share/apps/plasma/plasmoids/org.kde.notifications/contents/ui/Jobs.qml:81:5: QML Title: Binding loop detected for property "height" link XMLID_34_ hasn't been detected! link XMLID_34_ hasn't been detected! link XMLID_36_ hasn't been detected! file:///home/paul/kde4/share/apps/plasma/plasmoids/org.kde.locationchooser/ui/LocationDelegate.qml:46:5: QML Text: Possible anchor loop detected on fill. file:///home/paul/kde4/share/apps/plasma/plasmoids/org.kde.locationchooser/ui/LocationDelegate.qml:85: ReferenceError: Can't find variable: configIconsSvg Adding a new panel: Plasma::Containment(0xa6c12f8) Formfactor: 2 Location: 3 file:///home/paul/kde4/share/apps/plasma/plasmoids/org.kde.locationchooser/ui/LocationDelegate.qml:46:5: QML Text: Possible anchor loop detected on fill. plasma-device(10394)/libplasma Plasma::PackagePrivate::isValid: Could not find required directory images QImage::scaled: Image is a null image plasma-device(10394)/libplasma Plasma::PackagePrivate::isValid: Could not find required directory images QImage::scaled: Image is a null image trying to alter state of unknown activity!! trying to alter state of unknown activity!! trying to alter state of unknown activity!!<br>
<br>